Last chance! 50% off unlimited learning
Sale ends in
This function computes the stability analysis and environmental stratification using factor analysis as proposed by Murakami and Cruz (2004).
ge_factanal(.data, env, gen, rep, resp, mineval = 1, verbose = TRUE)
The dataset containing the columns related to Environments, Genotypes, replication/block and response variable(s)
The name of the column that contains the levels of the environments.
The name of the column that contains the levels of the genotypes.
The name of the column that contains the levels of the replications/blocks
The response variable(s). To analyze multiple variables in a
single procedure use, for example, resp = c(var1, var2, var3)
.
The minimum value so that an eigenvector is retained in the factor analysis.
Logical argument. If verbose = FALSE
the code will run silently.
An object of class ge_factanal
with the following items:
The data used to compute the factor analysis.
The correlation matrix among the environments.
The eigenvalues and explained variance.
The factor analysis.
The environmental stratification.
The result for the Kaiser-Meyer-Olkin test.
The measure of sampling adequacy for individual variable.
The communalities.
The communalities' mean.
The initial loadings.
The final loadings after varimax rotation.
The canonical loadings.
The scores for genotypes for the first and second factors.
Murakami, D.M.D., and C.D.C. Cruz. 2004. Proposal of methodologies for environment stratification and analysis of genotype adaptability. Crop Breed. Appl. Biotechnol. 4:7-11.
# NOT RUN {
library(metan)
model <- ge_factanal(data_ge2,
env = ENV,
gen = GEN,
rep = REP,
resp = PH)
# }
Run the code above in your browser using DataLab