nlme (version 3.1-1)

print.intervals.lme: Print an intervals.lme Object

Description

The individual components of x are printed.

Usage

print(x, ...)

Arguments

x
an object inheriting from class intervals.lme, representing a list of data frames with confidence intervals and estimates for the coefficients in the lme object that produced x.
...
optional arguments passed to print.default; see the documentation on that method function.

See Also

intervals.lme

Examples

Run this code
library(nlme)
data(Orthodont)
fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject)
print(intervals(fm1))

Run the code above in your browser using DataCamp Workspace