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)
}

Try the miceadds package in your browser

Any scripts or data that you put into this service are public.

miceadds documentation built on Jan. 7, 2023, 1:09 a.m.