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