Rev 6562 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File nlme/man/fitted.lmList.Rd% Part of the nlme package for R% Distributed under GPL 2 or later: see nlme/LICENCE.note\name{fitted.lmList}\title{Extract lmList Fitted Values}\usage{\method{fitted}{lmList}(object, subset, asList, \dots)}\alias{fitted.lmList}\arguments{\item{object}{an object inheriting from class \code{"\link{lmList}"}, representinga list of \code{lm} objects with a common model.}\item{subset}{an optional character or integer vector naming the\code{lm} components of \code{object} from which the fitted valuesare to be extracted. Default is \code{NULL}, in which case allcomponents are used.}\item{asList}{an optional logical value. If \code{TRUE}, the returnedobject is a list with the fitted values split by groups; else thereturned value is a vector. Defaults to \code{FALSE}.}\item{\dots}{some methods for this generic require additionalarguments. None are used in this method.}}\description{The fitted values are extracted from each \code{lm} component of\code{object} and arranged into a list with as many components as\code{object}, or combined into a single vector.}\value{a list with components given by the fitted values of each \code{lm}component of \code{object}, or a vector with the fitted values for all\code{lm} components of \code{object}.}\author{José Pinheiro and Douglas Bates \email{bates@stat.wisc.edu}}\seealso{\code{\link{lmList}}, \code{\link{residuals.lmList}}}\examples{fm1 <- lmList(distance ~ age | Subject, Orthodont)fitted(fm1)}\keyword{models}