Rev 36186 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{fitted}\title{Extract Model Fitted Values}\usage{fitted(object, \dots)fitted.values(object, \dots)}\alias{fitted.values}\alias{fitted}%%- methods:\alias{fitted.default}%\alias{fitted.lm}%\alias{fitted.glm}\arguments{\item{object}{an object for which the extraction of model fitted values ismeaningful.}\item{\dots}{other arguments.}}\description{\code{fitted} is a generic function which extracts fitted values fromobjects returned by modeling functions. \code{fitted.values} is analias for it.All object classes which are returned by model fitting functionsshould provide a \code{fitted} method. (Note that the generic is\code{fitted} and not \code{fitted.values}.)Methods can make use of \code{\link{napredict}} methods to compensatefor the omission of missing values. The default and \code{\link{nls}}methods do.}\value{Fitted values extracted from the object \code{x}.}\references{Chambers, J. M. and Hastie, T. J. (1992)\emph{Statistical Models in S}.Wadsworth \& Brooks/Cole.}\seealso{\code{\link{coefficients}}, \code{\link{glm}}, \code{\link{lm}},\code{\link{residuals}}.}\keyword{models}\keyword{regression}