#' Statistical Mode
#'
#' @param x a vector containing numeric values
#'
#' @examples
#' myStatisticalMode(c(1,2,1,3))
#' @export
myStatisticalMode <- 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.