#' Takes the inverse of a logit transformed value
#'
#' \code{invlogit} Takes the inverse of a logit transformed
#' value
#'
#' @param est A parameter estimate on the logit scale.
#'
#' @return back transformed value.
#'
#' @author Martijn Heymans, 2021
#'
#' @examples
#' invlogit(est=1.39)
#'
#' @export
invlogit <- function(est){
inv.est <- exp(est) / (1 + exp(est))
return(inv.est)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.