#' Get all functions that are used in a formula `expr`.
#'
#' @param expr a formula object
#'
#' @return
#' @export
#'
#' @examples
#'
all_funs = function(expr){
all.names(expr, unique=TRUE)[!(all.names(expr, unique=TRUE) %in% all.vars(expr))]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.