#' Min-max normalisation
#'
#' @param x
#'
#' @return Normalisation
#' @export
min_max_norm <- function(x) {
(x - min(x)) / (max(x) - min(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.