#' unlogit
#'
#' This function allows you to unlogit (back transform)
#' @param logit numeric value
#' @return y unlogit value
#' @keywords logit
#' @export
#' @examples
#' un_logit(1)
un_logit <- function(logit){
y = exp(logit)/(1 + exp(logit))
return(y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.