Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I disable options(scipen=999) for scientific notation in r?

Tags:

r

I was trying to disable the scientific notation with the options(scipen=999) command. It worked fine for my plot but now I want to have the scientific notation again so I would like to disable that command.

like image 362
Angel Gonzalez Avatar asked Nov 04 '25 11:11

Angel Gonzalez


1 Answers

You need to set scipen back to 0:

options(scipen = 0)
like image 132
bird Avatar answered Nov 06 '25 01:11

bird