#' @title mround
#'
#' @description rounds to nearest X
#'
#' @param x
#' @param base
#'
#' @return NULL
#'
#' @examples mround(x,base)
#'
#' @export
mround <- function(x,base){
base*round(x/base)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.