print.intervals.gls {nlme} | R Documentation |
The individual components of x
are printed.
print(x, ...)
x |
an object inheriting from class intervals.gls ,
representing a list of data frames with confidence intervals and
estimates for the coefficients in the gls object that produced
x . |
... |
optional arguments passed to print.default ; see
the documentation on that method function. |
Jose Pinheiro and Douglas Bates
library(nlme) data(Ovary) fm1 <- gls(follicles ~ sin(2*pi*Time) + cos(2*pi*Time), Ovary, correlation = corAR1(form = ~ 1 | Mare)) print(intervals(fm1))