R/expit.R

Defines functions expit

expit <- function(x) {
  exp(x) / (1 + exp(x))
}
brockk/dosefinding documentation built on April 5, 2025, 5:53 p.m.