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.