https://github.com/cran/qpcR
Raw File
Tip revision: 002c86eb3c41ef33b94a64dc562866a8956d4854 authored by Andrej-Nikolai Spiess on 25 March 2009, 00:00:00 UTC
version 1.1-8
Tip revision: 002c86e
RSS.Rd
\name{RSS}
\alias{RSS}

\title{Residual sum-of-squares of a fitted model}

\description{
  Calculates the residual sum-of-squares for objects of class \code{drc}, \code{lm}, \code{glm}, \code{nls}
 or any other models where \code{\link{residuals}} can be extacted. 
}

\usage{
  RSS(object)
}

\arguments{
  \item{object}{a fitted model.}  
}

\value{
The residual sum-of-squares from the fit.
}

\author{
  Andrej-Nikolai Spiess
}


\examples{
m <- pcrfit(reps, 1, 2, l5())
RSS(m)
}

\keyword{models}
\keyword{nonlinear}
back to top