I would like to have consistent output for a particular R script. In this case, I would like all numeric output to be in scientific notation with exactly two decimal places.
Examples:
0.05 --> 5.00e-02
0.05671 --> 5.67e-02
0.000000027 --> 2.70e-08
I tried using the following options:
options(scipen = 1)
options(digits = 2)
This gave me the results:
0.05 --> 0.05
0.05671 --> 0.057
0.000000027 --> 2.7e-08
I obtained the same results when I tried:
options(scipen = 0)
options(digits = 2)
Thank you for any advice.
options(digits = 3, scipen = -2)
. I deleted this as an answer though because I don't know if you have really large numbers - this will not work for that. It would be better if someone else knew a really comprehensive way to do this across number types, but in a pinch and if you only have small numbers, this will do it. – Scholem