Label numbers with SI prefixes (2k, 1M, 5T etc)
number_si()
automatically scales and labels with the best SI prefix,
"K" for values ≥ 10e3, "M" for ≥ 10e6,
"B" for ≥ 10e9, and "T" for ≥ 10e12.
label_number_si(accuracy = 1, unit = NULL, sep = NULL, ...)
accuracy |
A number to round to. Use (e.g.) Applied to rescaled data. |
unit |
Optional units specifier. |
sep |
Separator between number and SI unit. Defaults to |
... |
Other arguments passed on to |
All label_()
functions return a "labelling" function, i.e. a function that
takes a vector x
and returns a character vector of length(x)
giving a
label for each input value.
Labelling functions are designed to be used with the labels
argument of
ggplot2 scales. The examples demonstrate their use with x scales, but
they work similarly for all scales, including those that generate legends
rather than axes.
Other labels for continuous scales:
label_bytes()
,
label_dollar()
,
label_number_auto()
,
label_ordinal()
,
label_parse()
,
label_percent()
,
label_pvalue()
,
label_scientific()
Other labels for log scales:
label_bytes()
,
label_scientific()
demo_continuous(c(1, 1e9), label = label_number_si()) demo_continuous(c(1, 5000), label = label_number_si(unit = "g")) demo_continuous(c(1, 1000), label = label_number_si(unit = "m")) demo_log10(c(1, 1e9), breaks = log_breaks(10), labels = label_number_si())
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.