Skip to content
Prev 35743 / 63424 Next

Suppressing scientific notation on plot axis tick labels (PR#14202)

murdoch at stats.uwo.ca wrote:
Same thing with, e.g.

x <- c(1e7, 2e7)
options(scipen =3)
barplot(x)
x
barplot(x)
options(scipen=0)
barplot(x)
x
barplot(x)