#' @export
minimum <- function (x) UseMethod("minimum", x)
minimum.character <- function (x) first(sort(unique(x)))
minimum.default <- function (x) min(x, na.rm = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.