multiple: multiple

Description Usage Arguments Details Value Author(s) Examples

Description

Order of Magnitude Formatter

Usage

1
2
3
  multiple(x,
    multiple = c("K", "M", "B", "T", "H", "k", "m", "b", "t", "h"),
    extra = comma, digits = 0)

Arguments

x

Vector of numbers to be formatted.

multiple

The multiple to display numbers in. This symbol will be added to the end of the numbers.

extra

Function for perform any further formatting.

digits

Number of decimal places for rounding.

Details

This divides the number by the apropriate amount and adds on the corresponding symbol at the end of the number.

Value

Character vector of formatted numbers.

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(vect)
multiple(vect, extra=dollar)
multiple(vect, extra=identity)

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

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