multiple.comma: multiple.comma

View source: R/formatters.r

multiple.commaR Documentation

multiple.comma

Description

Order of Magnitude Formatter

Usage

multiple.comma(x, ...)

Arguments

x

Vector of numbers to be formatted.

...

Further arguments to be passed on to link{multiple}

Details

Simply a wrapper for multiple that prespecifies the extra comma.

Value

Character vector of comma formatted numbers.

Author(s)

Jared P. Lander

Examples


require(scales)
vect <- c(1000, 1500, 23450, 21784, 875003780)
multiple.comma(vect)
multiple.comma(vect, multiple="k")
multiple.comma(vect, multiple="h")

require(ggplot2)
data(diamonds)
ggplot(diamonds, aes(x=x, y=y, color=price*100)) + geom_point() + 
scale_color_gradient2(labels=multiple.comma)


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