Aliases: decimal_dot
Keywords:
### ** Examples opts = options(OutDec = ",") as.character(1.234) # using ',' as the decimal separator
[1] "1,234"
print(1.234) # same
[1] 1,234
xfun::decimal_dot(as.character(1.234)) # using dot
[1] "1.234"
xfun::decimal_dot(print(1.234)) # using dot
[1] 1.234
options(opts)