R/expit.R

Defines functions expit

expit <- function(aa) { 
  exp_aa <- exp(aa)
  exp_aa/(1+exp_aa)
}

Try the binaryMM package in your browser

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

binaryMM documentation built on Oct. 12, 2022, 1:06 a.m.