predict.gge {metan} | R Documentation |
Predict a two-way table based on GGE model
Description
Predict the means for a genotype-vs-environment trial based on a Genotype plus Genotype-vs-Environment interaction (GGE) model.
Usage
## S3 method for class 'gge'
predict(object, naxis = 2, output = "wide", ...)
Arguments
object |
An object of class |
naxis |
The the number of principal components to be used in the prediction. Generally, two axis may be used. In this case, the estimated values will be those shown in the biplot. |
output |
The type of output. It must be one of the |
... |
Currently not used. |
Details
This function is used to predict the response variable of a two-way table (for examples the yielding of g genotypes in e environments) based on GGE model. This prediction is based on the number of principal components used. For more details see Yan and Kang (2007).
Value
A two-way table with genotypes in rows and environments in columns if
output = "wide"
or a long format (columns ENV, GEN and Y) if
output = "long"
with the predicted values by the GGE model.
Author(s)
Tiago Olivoto tiagoolivoto@gmail.com
References
Yan, W., and M.S. Kang. 2003. GGE biplot analysis: a graphical tool for breeders, geneticists, and agronomists. CRC Press.
Examples
library(metan)
mod <- gge(data_ge, GEN, ENV, c(GY, HM))
predict(mod)