tests/drop.R

if (.Platform$OS.type != "windows") withAutoprint({
    library(lme4)

    fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy)

    ## slightly weird model but plausible --- not that
    ##   one would want to try drop1() on this model ...
    fm2 <- lmer(Reaction ~ 1+ (Days|Subject), sleepstudy)
    drop1(fm2)  ## empty
    update(fm1, . ~ . - Days)
    anova(fm2) ## empty

    terms(fm1)
    terms(fm1,fixed.only=FALSE)

    extractAIC(fm1)

    drop1(fm1)
    drop1(fm1, test="Chisq")

    gm1 <- glmer(cbind(incidence, size - incidence) ~ period + (1 | herd),
                 family = binomial, data = cbpp, nAGQ=25L)

    drop1(gm1, test="Chisq")

}) ## skip on windows (for speed)

Try the lme4 package in your browser

Any scripts or data that you put into this service are public.

lme4 documentation built on Nov. 5, 2023, 9:06 a.m.