Print a modelStruct Object

Usage

print(x, ...)

Arguments

x an object inheriting from class modelStruct, representing a list of model components, such as corStruct and varFunc objects.
... optional arguments passed to print.default; see the documentation on that method function.

Description

This method function applies print to each element of object.

Value

the printed elements of object.

Author(s)

Jose Pinheiro and Douglas Bates

See Also

print

Examples

library(lme)
lms1 <- lmeStruct(reStruct = reStruct(pdDiag(diag(2), ~age)),
   corStruct = corAR1(0.3))
print(lms1)


[Package Contents]