Learn R Programming

papeR (version 1.0-5)

Anova.lme: Anova Function for lme Models

Description

This is a wrapper to anova.lme from package nlme and is coded similar to Anova from car as it produces marginal tests by default.

Usage

# S3 method for lme
Anova(mod, type = c("marginal", "sequential"), ...)

Arguments

mod

linear mixed model fitted with package nlme.

type

type of anova, either marginal (default) or sequential.

further arguments to be passed to anova.lme

See Also

Anova (package car)

Examples

Run this code
# NOT RUN {
## Example requires package nlme to be installed and loaded
if (require("nlme")) {
    ## Load data set Orthodont
    data(Orthodont, package = "nlme")

    ## Fit a model for distance with random intercept for Subject
    mod <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1 | Subject)

    Anova(mod)
}
# }

Run the code above in your browser using DataLab