The goal of this tutorial is to show numbers without exponents. If we work with large numbers and we want to see every single cypher.
# Imagine we want to see big numbers with precission
# However scientfic notation does not allow us to see all the cyphers in a big number
1e+09
## [1] 1e+09
1 + 1e+09
## [1] 1e+09
# We can do it by removing the scientific notation
my_number <- 1 + 1e+09
my_number
## [1] 1e+09
format(my_number, scientific = F)
## [1] "1000000001"
In this tutorial we have learnt how to remove the scientific notation from our big numbers so we can see every single cypher.