#' Anonymize numeric vectors
#'
#' Normalize numeric vectors
#'
#' @param double double
#' @param normalization function
#'
#' @return double
#' @export
#'
#' @examples
#' iris$Sepal.Length %>% anon_double
anon_double <- function(double, normalization=function(x){(x - mean(x))/stats::sd(x)}) {
anon_x <- normalization(double)
return(anon_x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.