Converts numeric values to formatted strings with thousand separators (commas).
Examples
# Format large numbers
to_big(c(1000, 25000, 1000000))
#> [1] "1,000" "25,000" "1,000,000"
Converts numeric values to formatted strings with thousand separators (commas).
# Format large numbers
to_big(c(1000, 25000, 1000000))
#> [1] "1,000" "25,000" "1,000,000"