Rev 7324 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{predict}\title{Model Predictions}\usage{predict (object, \dots)}\alias{predict}\arguments{\item{object}{a model object for which prediction is desired.}\item{\dots}{additional arguments affecting the predictions produced.}}\description{\code{predict} is a generic function for predictions from the results ofvarious model fitting functions. The function invokes particular\emph{methods} which depend on the \code{\link{class}} of the first argument.The function \code{\link{predict.lm}} makes predictions based on theresults produced by \code{\link{lm}}.}\value{The form of the value returned by \code{predict} depends on theclass of its argument. See the documentation of theparticular methods for details of what is produced by that method.}\seealso{\code{\link{predict.lm}}.}\examples{## All the "predict" methods available in your current search() path:for(fn in methods("predict"))cat(fn,":\n\t",deparse(args(get(fn))),"\n")}\keyword{methods}