How can I make tbl_summary not to add a space in my numbers when they are 4 digits long?
For example, in this image you can see that 1888 and 1055 are presented like 1 888 and 1 055.
Try with
tbl_summary(digits = ~label_style_number(big.mark = ""))
(you may have to adapt to your exact variables, for example with variable a
:
tbl_summary(digits = list(a ~ label_style_number(big.mark = "")))
)