multiple_format: multiple_format

View source: R/formatters.r

multiple_formatR Documentation

multiple_format

Description

Multiple Style Formatting

Usage

multiple_format(...)

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


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))


useful documentation built on Oct. 24, 2023, 9:07 a.m.