Numbers format.

I want put he number format only to display on the results with comma for thousands and dot for decimals.
Example

1,200.00

How i can do for all the workspace in R?
Similarly when set with options(scipen = 10) to don't display scientific values.

I like the scales package for things like this:

scales::comma(1200, accuracy = 0.01)
#> [1] "1,200.00"

Created on 2020-06-11 by the reprex package (v0.3.0)

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.