Update an lmList Object

Usage

update(object, formula, data, groups, level, subset, na.action, control)

Arguments

object an object inheriting from class lmList, representing a fitted linear mixed-effects model.
formula a two-sided linear formula with the common model for the individuals lm fits.
other arguments defined as in lmList. See the documentation on that function for descriptions of and default values for these arguments.

Description

The non-missing arguments in the call to the update.lmList method replace the corresponding arguments in the original call used to produce object and lmList is used with the modified call to produce an updated fitted object.

Value

an updated lmList object.

Author(s)

Jose Pinheiro and Douglas Bates

See Also

lmList

Examples

library(lme)
data(Orthodont)
fm1 <- lmList(Orthodont)
fm2 <- update(fm1, distance ~ I(age - 11))


[Package Contents]