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
Rsq.Rd
\name{Rsq}
\alias{Rsq}

\title{R-square value of a fitted model}

\description{
  Calculates the R-square value for objects of class \code{drc}, \code{lm}, \code{glm}, \code{nls}
 or any other models where \code{\link{fitted}} and \code{\link{residuals}} can be extacted.
}

\usage{
  Rsq(object)
}

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

\value{
The R-square value of the fit.
}

\author{
  Andrej-Nikolai Spiess
}


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

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