Skip to contents

Extract the fitted values for an object of class varCov.

Usage

# S3 method for varCov
fitted(object, ...)

Arguments

object

An object of class varCov

...

Not used.

Value

A data.frame with fitted values.

See also

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)
  }
# }