multiple_format: multiple_format

Description Usage Arguments Details Value Author(s) Examples

Description

Multiple Style Formatting

Usage

1

Arguments

...

Arguments to be passed onto multiple

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

1
2
3
4
5
6
7
8
9
require(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))

jaredlander/mapping documentation built on May 18, 2019, 3:46 p.m.