How to Turn off scientific notation like 1e+09 in R?

options( scipen = 999 )

Hi b.mahmood, welcome to our community! It would be nice if you would write a bit more explaining your problem. I guess you trired options(scipen = 999) and it did not work? Or what does this mean?

In case you want to omit the use of exponential formatting on one of the axes in a ggplot: Add scale_*_continuous(labels = scales::comma) with * being replaced by the axis you want to change (e.g. scale_x_continuous()).

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.