| pretty10exp {sfsmisc} | R Documentation |
Produce nice a * 10^k expressions to be used
instead of the scientific notation "a E<k>".
pretty10exp(x, drop.1 = FALSE)
x |
numeric vector (e.g. axis tick locations) |
drop.1 |
logical indicating if 1 * should be dropped from the resulting expressions. |
an expression of the same length as x, with elements of the
form a %*% 10 ^ k.
Martin Maechler
axTexpr which builds on pretty10exp();
further axis, axTicks.
pretty10exp(-1:3 * 1000) pretty10exp(-1:3 * 1000, drop.1 = TRUE) pretty10exp(c(1,2,5,10,20,50,100,200) * 1e3)