https://github.com/cran/qpcR
Raw File
Tip revision: 50b4350d7c8be8e5917ae3d0580ab19842dacf4e authored by Andrej-Nikolai Spiess on 08 August 1977, 00:00:00 UTC
version 1.1-1
Tip revision: 50b4350
resVar.Rd
\name{resVar}
\alias{resVar}

\title{Residual variance of a fitted model}

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

\usage{
 resVar(object)
}

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

\value{
The residual variance of the fit.
}

\author{
  Andrej-Nikolai Spiess
}


\examples{
m <- multdrc(F1.1 ~ Cycles, data = reps, fct = l5())
resVar(m)
}

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