#' Title
#'
#' @param x
#'
#' @return
#' @export
#'
#' @examples
Mode <- function(x) {
ux <- unique(x)
ux[which.max(tabulate(match(x, ux)))]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.