1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
% File nlme/man/getData.Rd
% Part of the nlme package for R
% Distributed under GPL 2 or later: see nlme/LICENCE.note
\name{getData}
\title{Extract Data from an Object}
\usage{
getData(object)
}
\alias{getData}
\arguments{
\item{object}{an object from which a data frame can be extracted,
generally a fitted model object.}
}
\description{
This function is generic; method functions can be written to handle
specific classes of objects. Classes which already have methods for
this function include \code{gls}, \code{lme},
and \code{lmList}.
}
\value{
will depend on the method function used; see the appropriate documentation.
}
\author{José Pinheiro and Douglas Bates \email{bates@stat.wisc.edu}}
\seealso{
\code{\link{getData.gls}},
\code{\link{getData.lme}},
\code{\link{getData.lmList}}
}
\keyword{models}
|