print.summary.lmList {nlme}R Documentation

Print a summary.lmList Object

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.

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.

Author(s)

Jose Pinheiro Jose.Pinheiro@pharma.novartis.com and Douglas Bates bates@stat.wisc.edu

See Also

summary.lmList, lmList

Examples

data(Orthodont)
fm1 <- lmList(distance ~ age | Subject, Orthodont)
print(summary(fm1))

[Package Contents]