lme4 (version 0.3-4)

lme-class: Class "lme"

Description

A linear mixed-effects model.

Arguments

Objects from the Class

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

Extends

Class "lme", directly.

Examples

Run this code
library(lme4)
data(bdf, package = "nlme")
# This returns an object of class lme
fm <- lme(langPOST ~ IQ.ver.cen + avg.IQ.ver.cen, data = bdf,
          random = ~ IQ.ver.cen | schoolNR)
fm

Run the code above in your browser using DataCamp Workspace