Print method for objects of class(AnovaMix)
Prints relevant information like the ANOVA table, variance components and errors. latin1
## S3 method for class 'AnovaMix' print(x, ...)
x
: AnovaMix
object to be printed....
: Additional arguments (not supported yet).Kristian Hovde Liland
Only balanced models are fully supported.
AnovaMix
, lm
, Anova
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")