R/logistic.R

Defines functions logit logistic

logistic <- function(x) exp(x)/(1 + exp(x))

logit <- function(p) log(p/(1 - p))
sashahafner/ATM99 documentation built on June 14, 2025, 5:34 p.m.