I have part of code that should show currency value in a French format
This code
library(formattable)
currency(x = 123456, symbol = "€", digits = 0)
gives me "€123,456".
I need code that gives me "123 456€" in a French format for one single value.
Thanks!