R/inverse_logit.R

Defines functions inverse_logit

Documented in inverse_logit

#' @title inverse_logit
#'
#' @description
#' \code{inverse_logit} is function a reverse to \code{logit} transformation
#'
#' @author Kamil Jaron \email{kamiljaron at gmail.com}
#'
#' @export

inverse_logit <- function(vector){
    return(exp(vector) / (1 + exp(vector)))
}
KamilSJaron/ConjunctionStats documentation built on May 7, 2019, 12:06 p.m.