#' A function to take logit
#'
#' See McElreaths Rethinking package for details
#'
#' @param
#' x value
#' @return logit(x)
#' @export
logit = function (x)
{
log(x) - log(1 - x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.