When I try removing scientific notation, the number gets converted to character. Can we not remove scientific notation and still keep the output as numeric?
numb <- 20172334534654e-08
class(format(numb, scientific = F))
When I try removing scientific notation, the number gets converted to character. Can we not remove scientific notation and still keep the output as numeric?
numb <- 20172334534654e-08
class(format(numb, scientific = F))
Try this CODE as akrun suggests:
options(scipen=999)
or
format(99999999,scientific = FALSE)