1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/drm.R
\name{logit}
\alias{logit}
\title{Transform from [0,1] to the reals}
\usage{
logit(p, location = 0, scale = 1, lower.tail = TRUE, log.p = FALSE)
}
\arguments{
\item{p}{a number between 0 and 1}
\item{location}{see qlogis}
\item{scale}{see qlogis}
\item{lower.tail}{see qlogis}
\item{log.p}{see qlogis}
}
\description{
The logit function is a standard transformation from [0,1] (such
as a probability) to the real number line. This function is
exactly the same as qlogis.
}
\examples{
logit(.5) # 0
logit(.25) # -1.098
logit(0) # -Inf
}
\seealso{
qlogis, plogis
}
|