R/aaa.R

Defines functions expit logit

##Useful functions that are used elsewhere

logit <- function(x) {log(x/(1-x))}
expit <- function(x) {exp(x)/(1+exp(x))}

Try the Rcade package in your browser

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

Rcade documentation built on Nov. 8, 2020, 6:25 p.m.