multiple_format {useful} | R Documentation |
multiple_format
Description
Multiple Style Formatting
Usage
multiple_format(...)
Arguments
... |
Arguments to be passed onto |
Details
Since ggplot requires a function for formatting this allows the user to specify the function's arguments, which will return a function that can be used by ggplot.
Value
The function multiple
.
Author(s)
Jared P. Lander
Examples
library(scales)
vect <- c(1000, 1500, 23450, 21784, 875003780)
multiple_format()(vect)
multiple_format(extra=dollar)(vect)
multiple_format(extra=identity)(vect)
require(ggplot2)
data(diamonds)
ggplot(diamonds, aes(x=x, y=y, color=price*100)) + geom_point() +
scale_color_gradient2(labels=multiple_format(extra=dollar))
[Package useful version 1.2.6.1 Index]