print.asrtests {asreml3Plus} | R Documentation |
asrtests
objectPrints a summary
of the asreml object and the test.summary
data.frame
that are stored in the asrtests
object.
## S3 method for class 'asrtests' print(x, which = "all", ...)
x |
An |
which |
Which elements of the |
... |
further arguments passed to |
No value is returned, but the elements of the list in x
are
printed.
## Not run: data(Wheat.dat) current.asr <- asreml(yield ~ Rep + WithinColPairs + Variety, random = ~ Row + Column + units, rcov = ~ ar1(Row):ar1(Column), data=Wheat.dat) current.asrt <- asrtests(current.asr, NULL, NULL) current.asrt <- rmboundary.asrtests(current.asrt) # Test Row autocorrelation current.asrt <- testrcov.asrtests("~ Row:ar1(Column)", current.asrt, label="Row autocorrelation", simpler=TRUE) print(current.asrt) ## End(Not run)