print.lme {nlme}R Documentation

Print an lme Object

Description

Information describing the fitted linear mixed-effects model represented by x is printed. This includes the fixed effects, the standard deviations and correlations for the random effects, the within-group correlation and variance function parameters, if any are present, and the within-group standard deviation.

Usage

print(x, ...)

Arguments

x an object inheriting from class lme, representing a fitted linear mixed-effects model.
... 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

lme, print.summary.lme

Examples

data(Orthodont)
fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject)
print(fm1)

[Package Contents]