#' Summarise distribution
#' @param x vector of any class
#'
summarise_distribution <- function(x) {
if (is.numeric(x)) {
return(summary(x))
} else {
return()
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.