#' expit function
#'
#'
#' @description literally just the expit function
#'
#' @param x the number to expit
#' @return the expited version of x
#'
#' @export
expit <- function(x) {
return(exp(x)/(1+exp(x)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.