#' strips numbers from its Euro currency
#' @param x number with euro sign
#' @return only number
#' @export
#' @importFrom scales dollar
#' @examples
#' uneur("€100,000")
#' uneur("€46,546.99")
uneur <- function(x) {
x<- gsub('€', '', x)
as.numeric(gsub(',', '', x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.