
Last chance! 50% off unlimited learning
Sale ends in
This function computes the following AMMI-based stability indexes: ASV, AMMI stability value (Purchase et al., 2000); SIPC, sums of the absolute value of the IPCA scores (Sneller et al. 1997); EV, averages of the squared eigenvector values (Sneller et al. 1997); and Za, absolute value of the relative contribution of IPCAs to the interaction (Zali et al. 2012), and WAAS, weighted average of absolute scores (Olivoto et al. 2019).
AMMI_indexes(.data, order.y = NULL, level = 0.95)
An object of class waas
or performs_ammi
A vector of the same length of x
used to order the
response variable. Each element of the vector must be one of the 'h'
or 'l'
. If 'h'
is used, the response variable will be ordered
from maximum to minimum. If 'l'
is used then the response variable
will be ordered from minimum to maximum. Use a comma-separated vector of
names. For example, order.y = c("h, h, l, h, l")
.
The confidence level. Defaults to 0.95.
A list where each element contains the result AMMI-based stability indexes for one variable.
The ASV index is computed as follows:
where
The SIPC index is computed as follows:
where
The EV index is computed as follows:
The ZA index is computed as follows:
where
where
Five simultaneous selection indexes (ssi) are also computed by summation of the ranks of the ASV, SIPC, EV and Za indexes and the ranks of the mean yields (Farshadfar, 2008), which results in ssiASV, ssiSIPC, ssiEV, ssiZa, and ssiWAAS, respectively.
Purchase, J.L., H. Hatting, and C.S. van Deventer. 2000. Genotype vs environment interaction of winter wheat (Triticum aestivum L.) in South Africa: II. Stability analysis of yield performance. South African J. Plant Soil 17:101-107. doi:10.1080/02571862.2000.10634878
Sneller, C.H., L. Kilgore-Norquest, and D. Dombek. 1997. Repeatability of Yield Stability Statistics in Soybean. Crop Sci. 37:383-390. doi:10.2135/cropsci1997.0011183X003700020013x
Zali, H., E. Farshadfar, S.H. Sabaghpour, and R. Karimizadeh. 2012. Evaluation of genotype vs environment interaction in chickpea using measures of stability from AMMI model. Ann. Biol. Res. 3:3126-3136.
Olivoto, T., A.D.C. L\'ucio, J.A.G. da silva, V.S. Marchioro, V.Q. de Souza, and E. Jost. 2019a. Mean performance and stability in multi-environment trials I: Combining features of AMMI and BLUP techniques. Agron. J. 111:2949-2960. doi:10.2134/agronj2019.03.0220
# NOT RUN {
library(metan)
model <- waas(data_ge,
env = ENV,
gen = GEN,
rep = REP,
resp = c(GY, HM),
verbose = FALSE)
model_indexes <- AMMI_indexes(model)
# Alternatively (and more intuitively) using %>%
res_ind <- data_ge %>%
waas(ENV, GEN, REP, c(GY, HM)) %>%
AMMI_indexes()
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab