#' Non-numeric mode
#'
#' @param x Vector to find the mode over
#'
#' @return Mode
#' @export
#'
mode_nonnumeric <- 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.