3
Suppose I have the number 80 million.
Numero = 80000000
print(Numero)
[1] 8e+07
Because it is a large number the R already shows me in Scientific Number, but I would like to convert that number that is in Thousand Unit, in Unit of Ten, getting something like:
80 E
The idea was to display a number that was easier to visualize, where anyone who looks knows it’s 80 million. That’s possible?
Anything thus?
– Rui Barradas
Exactly! Thanks for the references.
– Izak Mandrak