Anova.lmm | R Documentation |
Replacement for Anova.lm
in package car
. This
version adds support for random effects when needed.
## S3 method for class 'lmm'
Anova(mod, ...)
mod |
|
... |
do not use. |
Returns appropriate analysis of variance or halts if unsupported input is detected.
John Fox jfox@mcmaster.ca. Extended by Kristian Hovde Liland.
Anova
, print.AnovaMix
, AnovaMix
, lm
dataset <- data.frame(y = rnorm(8),
x = factor(c(rep(1,4),rep(0,4))),
z = factor(rep(c(1,0),4)))
mixlm <- lm(y~x*r(z),
data = dataset)
Anova(mixlm, type="III")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.