I have some values like this:
8.329700e+05
2.213493e+00
4.404126e-01
5.397926e-01
2.054939e+00
and I want to convert them to values without e
how can I do this job in R?
I have some values like this:
8.329700e+05
2.213493e+00
4.404126e-01
5.397926e-01
2.054939e+00
and I want to convert them to values without e
how can I do this job in R?
You write something like to remove the scientific notation:
options(scipen=20)