Print a summary.lmList Object

Usage

print(x, ...)

Arguments

x an object inheriting from class summary.lmList, representing a summarized lme object.
... optional arguments passed to print.default; see the documentation on that method function.

Description

Information summarizing the individual lm fitted objects corresponding to x is printed. This includes the estimated coefficients and their respective standard errors, t-values, and p-values.

Author(s)

Jose Pinheiro and Douglas Bates

See Also

summary.lmList, lmList

Examples

library(lme)
data(Orthodont)
fm1 <- lmList(distance ~ age, data = Orthodont, groups = ~Subject)
print(summary(fm1))


[Package Contents]