print.AnovaMix {mixlm} | R Documentation |
Print method for objects of class(AnovaMix)
Description
Prints relevant information like the ANOVA table, variance components and errors.
Usage
## S3 method for class 'AnovaMix'
print(x, ...)
Arguments
x |
|
... |
Additional arguments (not supported yet). |
Note
Only balanced models are fully supported.
Author(s)
Kristian Hovde Liland
See Also
Examples
mixlm <- lm(y~x*r(z),
data = data.frame(y = rnorm(8),
x = factor(c(rep(1,4),rep(0,4))),
z = factor(rep(c(1,0),4))))
Anova(mixlm,type="III")
[Package mixlm version 1.3.0 Index]