anova.lmm {mixlm} | R Documentation |
Wrapper for anova.lm
in package stats
that halts execution
if unsupported input is detected.
## S3 method for class 'lmm'
anova(object, ...)
object |
object fitted by |
... |
possible additional argument to underlying functions. |
Returns appropriate analysis of variance or halts if unsupported input is detected.
Kristian Hovde Liland
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)