multiple.identity | R Documentation |
Order of Magnitude Formatter
multiple.identity(x, ...)
x |
Vector of numbers to be formatted. |
... |
Further arguments to be passed on to |
Simply a wrapper for multiple that prespecifies the extra identity.
Character vector of formatted numbers.
Jared P. Lander
vect <- c(1000, 1500, 23450, 21784, 875003780)
multiple.identity(vect)
multiple.identity(vect, multiple="k")
multiple.identity(vect, multiple="h")
require(ggplot2)
data(diamonds)
ggplot(diamonds, aes(x=x, y=y, color=price*100)) + geom_point() +
scale_color_gradient2(labels=multiple.identity)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.