#' inverse logit
#'
#' does what you want
#'
#' @seealso \code{\link[chf]{logit}}
#' @param a the numberic vector to which the deed is done
#' @return numeric vector deed done
#' @export
#' @examples
#' anum <- 0.48
#' logit_anum <- log(anum/(1 - anum))
#'
#' invlogit(logit_anum)
invlogit <- function(a) exp(a) / (exp(a) + 1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.