#' Normalize data
#'
#' @param x - vector with data to normalize
#'
#' @return normalzied vector
#'
#' @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.