Anova.lme: Anova Function for lme Models

Description Usage Arguments See Also Examples

View source: R/helpers.R

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

1
2
## S3 method for class '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

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## 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)
}

hofnerb/papeR documentation built on March 31, 2021, 6:49 a.m.