Performs a stability analysis based on the criteria of Fox et al. (1990), using the statistical "TOP third" only. In Fox function, a stratified ranking of the genotypes at each environment separately is done. The proportion of locations at which the genotype occurred in the top third are expressed in TOP output.

stab_fox(.data, .y, .rep, .gen, .env)

# S3 method for default
stab_fox(.data, .y, .rep, .gen, .env)

Arguments

.data

data.frame

.y

Response Variable

.rep

Replication Factor

.gen

Genotypes Factor

.env

Environment Factor

References

  1. Fox, P.N. and Skovmand, B. and Thompson, B.K. and Braun, H.J. and Cormier, R. (1990). Yield and adaptation of hexaploid spring triticale. Euphytica, 47, 57-64.

Examples

data(ge_data) YieldFox <- stab_fox( .data = ge_data , .y = Yield , .rep = Rep , .gen = Gen , .env = Env ) YieldFox
#> $Fox #> # A tibble: 60 x 3 #> Gen Mean TOP #> <fct> <dbl> <int> #>  1 013BT034 4248. 1 #>  2 122557 4062. 0 #>  3 122559 4259. 1 #>  4 12B.2511 4414. 3 #>  5 12FJ26 4057. 1 #>  6 14B.1030 3995. 0 #>  7 14C036 3943. 0 #>  8 14C040 3825. 0 #>  9 9496 4072. 0 #> 10 AUR0809 3792. 0 #> # ... with 50 more rows #>