Now, there has been some very similar questions on SO about rounding and significance, but non solves my issue. Here it is:
How to round randomly occurring numbers like these:
data <- c(152.335, 39.431, 21.894)
I would like to have them rounded like this:
c(150,40,20)
I have tried:
print(formatC(signif(data,digits=2), digits=2,format="f"))
Output:
[1] "150.00" "39.00" "22.00"
The above command requires me to change the digits=
to 1 or 2 in order to obtain the desired outcome. But, I would like a global - fit for all command. Thanks.