ammistability
computes multiple stability parameters from an AMMI
model. Further, the corresponding Simultaneous Selection Indices for Yield
and Stability (SSI) are also calculated according to the argument
ssi.method
. From the results, correlation between the computed indices
will also be computed. The resulting correlation matrices will be plotted as
correlograms. For visual comparisons of ranks of genotypes for different
indices, slopegraphs and heatmaps will also be generated by this function.
ammistability(
model,
n,
alpha = 0.05,
ssi.method = c("farshadfar", "rao"),
a = 1,
AMGE = TRUE,
ASI = TRUE,
ASV = TRUE,
ASTAB = TRUE,
AVAMGE = TRUE,
DA = TRUE,
DZ = TRUE,
EV = TRUE,
FA = TRUE,
MASI = TRUE,
MASV = TRUE,
SIPC = TRUE,
ZA = TRUE,
force.grouping = TRUE,
line.size = 1,
line.alpha = 0.5,
line.col = NULL,
point.size = 1,
point.alpha = 0.5,
point.col = NULL,
text.size = 2
)
The AMMI model (An object of class AMMI
generated by
AMMI
).
The number of principal components to be considered for computation. The default value is the number of significant IPCs.
Type I error probability (Significance level) to be considered to identify the number of significant IPCs.
The method for the computation of simultaneous selection
index. Either "farshadfar"
or "rao"
(See
SSI
).
The ratio of the weights given to the stability components for
computation of SSI when method = "rao"
(See
SSI
).
If TRUE
, computes AMGE (see Details). Default is
TRUE
.
If TRUE
, computes ASI (see Details). n = 2
will be used in this case. Default is TRUE
.
If TRUE
, computes ASV (see Details). n = 2
will be used in this case. Default is TRUE
.
If TRUE
, computes ASTAB (see Details). Default
is TRUE
.
If TRUE
, computes AVAMGE (see Details). Default
is TRUE
.
If TRUE
, computes DA (see Details). Default is
TRUE
.
If TRUE
, computes DZ (see Details). Default is
TRUE
.
If TRUE
, computes EV (see Details). Default is
TRUE
.
If TRUE
, computes FA (see Details). Default is
TRUE
.
If TRUE
, computes MASI (see Details). Default is
TRUE
.
If TRUE
, computes MASV (see Details). Default is
TRUE
.
If TRUE
, computes SIPC (see Details). Default is
TRUE
.
If TRUE
, computes ZA (see Details). Default is
TRUE
.
If TRUE
, genotypes will be considered as a
grouping variable for plotting the slopegraphs. (Each genotype will be
represented by a different colour in the slopegraphs). Default is
TRUE
.
Size of lines plotted in the slopegraphs. Must be numeric.
Transparency of lines plotted in the slopegraphs. Must be numeric.
Default is TRUE
. Overrides colouring by
force.grouping
argument.
Size of points plotted in the slopegraphs. Must be numeric.
Transparency of points plotted in the slopegraphs. Must be numeric.
Default is TRUE
. Overrides colouring by
force.grouping
argument.
Size of text annotations plotted in the slopegraphs. Must be numeric.
A list with the following components:
A data frame indicating the stability parameters computed and the method used for computing the SSI.
A data frame of computed stability parameters.
A data frame of computed SSIs.
A data frame of correlation between stability parameters.
A data frame of correlation between SSIs.
A data frame of correlation between stability parameters and SSIs.
Correlogram of stability parameters.
Correlogram of SSIs.
Correlogram of stability parameters and SSIs.
Slopegraph of stability parameter ranks.
Slopegraph of SSI ranks.
Heatmap of stability parameter ranks.
Heatmap of SSI ranks.
ammistability
computes the following stability parameters from an AMMI
model.
sneller_repeatability_1997;textualammistability
jambhulkar_ammi_2014,jambhulkar_genotype_2015,jambhulkar_stability_2017;textualammistability
purchase_parametric_1997,purchase_use_1999,purchase_genotype_2000;textualammistability
rao_use_2005;textualammistability
zali_evaluation_2012;textualammistability
annicchiarico_joint_1997;textualammistability
zhang_analysis_1998;textualammistability
zobel_stress_1994;textualammistability
raju_study_2002;textualammistability
ajay_modified_2018;textualammistability
zali_evaluation_2012,ajay2019ammistability;textualammistability
sneller_repeatability_1997;textualammistability
zali_evaluation_2012;textualammistability
AMMI
,
AMGE.AMMI
,
ASI.AMMI
,
ASTAB.AMMI
,
AMGE.AMMI
,
DA.AMMI
, DZ.AMMI
,
EV.AMMI
, FA.AMMI
,
MASV.AMMI
,
SIPC.AMMI
,
ZA.AMMI
, SSI
# NOT RUN {
library(agricolae)
data(plrv)
# AMMI model
model <- with(plrv, AMMI(Locality, Genotype, Rep, Yield, console = FALSE))
ammistability(model, AMGE = TRUE, ASI = FALSE, ASV = TRUE, ASTAB = FALSE,
AVAMGE = FALSE, DA = FALSE, DZ = FALSE, EV = TRUE,
FA = FALSE, MASI = FALSE, MASV = TRUE, SIPC = TRUE,
ZA = FALSE)
# }
Run the code above in your browser using DataLab