#' num_comma
#'
#' A shortcut for converting a string with numeric values separated comma into a proper numeric column
#' @param x Your data object - column or vector
#' @export
num_comma <- function(x) {
x <- as.numeric(gsub(',','',x,fixed=TRUE))
return(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.