2

I have a column that has decimal numbers (more than 50,000 rows). but the numbers are expressed as a form like this -> 3.900163e-02 How can I change this number to 0.03900163 in R?

Kangmin
  • 53
  • 1
  • 6

1 Answers1

3

As it was mentioned they are the same numbers, but if you want to print them in different format use format function:

x <- 0.000000000001
x
## [1] 1e-12
format(x, scientific=FALSE)
## [1] "0.000000000001"
bartektartanus
  • 15,284
  • 6
  • 74
  • 102