I\'d like to format numbers with both thousands separator and specifying the number of decimals. I know how to do these separately, but not together.
For example, I
formatC(1000.64, format="f", big.mark=",", digits=1)
(sorry if i'm missing something.)