#' As numeric
#' @param x character vector with numeric values where comma is used as thousand seperator
#'
as_numeric <- function(x) {
gsub(",", ".", x) %>%
as.numeric() %>%
{. * 1000}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.