Nothing
#' norm_var
#' @description Standardize a numeric variable
#' @param x A numeric variable
#'
#' @return The standardized variable
norm_var <- function(x){
result <- (x-mean(x))/sd(x)
result <- ifelse(is.na(result), 0, result)
return(result)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.