Skip to content
Prev 155275 / 398506 Next

Axis tick label format and rotation

Hi Kurt,
The easiest way is add a custom scale:
vals <- seq(0, 100, by = 10)
qplot(...) + scale_x_continuous(breaks = vals, labels = paste("$",
vals, sep = ""))
Not easily, but there will be in the next version.

Hadley