print.summary.lme {nlme}R Documentation

Print a summary.lme Object

Description

Information summarizing the fitted linear mixed-effects model represented by x is printed. This includes the AIC, BIC, and log-likelihood at convergence, the fixed effects estimates and respective standard errors, 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, verbose, ...)

Arguments

x an object inheriting from class summary.lme, representing a summarized lme object.
verbose an optional logical value used to control the amount of printed output. Defaults to FALSE.
... 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.lme, lme

Examples

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

[Package Contents]