I want all the numbers on my knitr report to be formatted as such by default:
format(num, digits = 2, big.mark = " ", decimal.mark = ",")
Defaulting the number of digits to 2 and the decimal mark to comma is easy, I just need to set options(digits = 2, OutDec = ",")
in my first R chunk. However, I don't see how I can set the thousand separator to " "
(or anything else, for that matter) in that format. I've also tried tweaking opts_chunk
, but can't get it to work.
Of course, I'm trying to avoid having to insert format()
inside every output, inline or otherwise. More intelligent formatting is one thing that drove me towards knitr from Sweave, after all.
How can I set default thousand separator marks on knitr?