Extract the fitted values for an object of class varCov.
Usage
# S3 method for class 'varCov'
fitted(object, ...)
See also
Other varCov:
gxeVarCov()
,
plot.varCov()
,
report.varCov()
,
residuals.varCov()
Examples
# \donttest{
if (requireNamespace("asreml", quietly = TRUE)) {
## Select the best variance-covariance model using asreml for modeling.
geVarCov <- gxeVarCov(TD = TDMaize, trait = "yld", engine = "asreml")
## Extract fitted values from the model.
fitVarCov <- fitted(geVarCov)
head(fitVarCov)
}
# }