R/logistic.R

Defines functions logit logistic

# Logistic and logit functions

logistic <- function(x) exp(x)/(1 + exp(x))
logit <- function(p) log(p/(1 - p))

Try the biogas package in your browser

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

biogas documentation built on April 11, 2025, 5:53 p.m.