You can use options(scipen=n) to control when numbers are printed
using scientific notation (the default value is 0). Compare
options(scipen=0); plot( 1e-17*(1:10), 1e5*(1:10))
options(scipen=10); plot( 1e-17*(1:10), 1e5*(1:10))
options(scipen=20); plot( 1e-17*(1:10), 1e5*(1:10))
Bill Dunlap
I am using Rstudio and running this simple code
hist(atap$Price)
The x-axis label displayed is in this format, 0e+00,1e+05 etc...
How do I get rid of the scientific values and display numbers? Seems it is
doing for all commands (barplot, boxplot, hist ) I am running. I have
few outliers in th
2 matches
Mail list logo