R/inverse_logit.R

Defines functions inverse_logit

## File Name: inverse_logit.R
## File Version: 0.05

inverse_logit <- function(p)
{
    # y <-  1 / ( 1 + exp(-p) )
    y <- stats::plogis(p)
    return(y)
}
alexanderrobitzsch/miceadds documentation built on Feb. 2, 2024, 10:21 a.m.