nlme (version 3.1-1)

print.summary.lmList: 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.

See Also

summary.lmList, lmList

Examples

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

Run the code above in your browser using DataCamp Workspace