How to disable scientific notation? How to disable scientific notation? r r

How to disable scientific notation?


You can effectively remove scientific notation in printing with this code:

options(scipen=999)


format(99999999,scientific = FALSE)

gives

99999999