R/functions.R

logit <- function(p) {
  log(p/(1-p))
}

expit <- function(x) {
  exp(x)/(1 + exp(x))
}
jacobcvt12/hlm.comparison documentation built on May 18, 2019, 9:04 a.m.