File: logit.Rd

package info (click to toggle)
r-cran-rpf 1.0.11%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,484 kB
  • sloc: cpp: 5,364; sh: 114; ansic: 41; makefile: 2
file content (32 lines) | stat: -rw-r--r-- 654 bytes parent folder | download | duplicates (3)
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
}