flogit | R Documentation |
Helper function: squeezed logit
flogit(p, sqz = 1e-06)
p |
a vector of values between 0 and 1 inclusive |
sqz |
the amount by which to 'squeeze', default is .000001 |
a vector of values between -Inf and +Inf
set.seed(1234)
p <- runif(n=1000)
summary(p)
sqz <- 1 / (10**6)
x <- flogit(p, sqz=sqz)
summary(x)
all( abs(p - fexpit(x, sqz=sqz)) < sqz )
all( abs(p - fexpit(flogit(p, sqz=sqz), sqz=sqz)) < sqz )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.