R/logit.R

Defines functions logit

Documented in logit

#' @title logit
#'
#' @description
#' \code{logit} transformation
#'
#' @author Kamil Jaron \email{kamiljaron at gmail.com}
#'
#' @export

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