Learn R Programming

mixlm (version 1.2.6)

Anova.lmm: Analysis of variance with SS type II or III (including mixed models).

Description

Replacement for Anova.lm in package car. This version adds support for random effects when needed.

Usage

# S3 method for lmm
Anova(mod, ...)

Arguments

mod

lm, aov, glm, multinom, polr mlm, coxph, lme, mer, svyglm or other suitable model object.

do not use.

Value

Returns appropriate analysis of variance or halts if unsupported input is detected.

See Also

Anova, print.AnovaMix, AnovaMix, lm

Examples

Run this code
# NOT RUN {
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")
# }

Run the code above in your browser using DataLab