#' Formats numbers in Euros
#' @param x number
#' @return string
#' @export
#' @importFrom scales dollar
#' @examples
#' eur(100000)
#' eur(10.784765482734823)
eur <- function(x) {
dollar(x, prefix = '\200', suffix = '', big.mark = ",")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.