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, ...) 

REQUIRED ARGUMENTS:

x
an object inheriting from class summary.lmList, representing a summarized lme object.

OPTIONAL ARGUMENTS:

...
optional arguments passed to print.default; see the documentation on that method function.

SEE ALSO:

,

EXAMPLES:

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