report.varCov {statgenGxE} | R Documentation |
Report method for class varCov
Description
A pdf report will be created containing a summary of an object of class varCov. Simultaneously the same report will be created as a tex file.
Usage
## S3 method for class 'varCov'
report(x, ..., outfile = NULL)
Arguments
x |
An object of class varCov. |
... |
Not used. |
outfile |
A character string, the name and location of the output .pdf
and .tex file for the report. If |
Value
A pdf and tex report.
See Also
Other varCov:
fitted.varCov()
,
gxeVarCov()
,
plot.varCov()
,
residuals.varCov()
Examples
## Select the best variance-covariance model using asreml for modeling.
if (requireNamespace("asreml", quietly = TRUE)) {
geVarCov <- gxeVarCov(TD = TDMaize, trait = "yld", engine = "asreml")
## Create a pdf report summarizing the results.
report(geVarCov, outfile = tempfile(fileext = ".pdf"))
}
[Package statgenGxE version 1.0.8 Index]