R/expit.R

Defines functions expit

expit <- function(x) {
  exp(x) / (1 + exp(x))
}
brockk/escalation documentation built on June 12, 2025, 5:22 p.m.