lme4 (version 0.2-1)

glmm-class: Class "glmm"

Description

A generalized linear mixed-effects model.

Arguments

Objects from the Class

Objects can be created by calls of the form new("glmm", ...).

Extends

Class "lme", directly.

Examples

Run this code
library(lme4)
data(guImmun)
# This returns an object of class glmm
fm = GLMM(immun ~ kid2p + mom25p + ord + ethn +
                  momEd + husEd + momWork + rural + pcInd81,
          data = guImmun, family = binomial,
          random = ~1|comm/mom)
fm

Run the code above in your browser using DataCamp Workspace