#' @export
most_frequent <- function(x, na.rm = TRUE) {
if (isTRUE(na.rm)) x <- stats::na.omit(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.