f_data {numform} | R Documentation |
Convert and Abbreviate Units of Data.
Description
Convert numeric data to shorter form with unit abbreviations attached. For example, move from 10,000,000,000 (Bytes) to 10GB (Gigabytes) instead.
f_byte
- Force the abbreviation to bytes
unit (B).
f_kilo
- Force the abbreviation to kilobytes
unit (KB).
f_mega
- Force the abbreviation to megabytes
unit (MB).
f_giga
- Force the abbreviation to gigabytes
unit (GB).
f_tera
- Force the abbreviation to terabytes
unit (TB).
f_peta
- Force the abbreviation to petabytes
unit (PB).
f_exa
- Force the abbreviation to exabytes
unit (EB).
f_zetta
- Force the abbreviation to zettabytes
unit (ZB).
f_yotta
- Force the abbreviation to yottabytes
unit (YB).
Usage
f_data(
x,
binary = FALSE,
digits = 0,
pad.char = " ",
less.than.replace = FALSE,
sep = "",
mix.units = FALSE,
from = "B",
...
)
ff_data(...)
f_byte(
x,
to = "B",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_byte(...)
f_kilo(
x,
to = "KB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_kilo(...)
f_mega(
x,
to = "MB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_mega(...)
f_giga(
x,
to = "GB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_giga(...)
f_tera(
x,
to = "TB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_tera(...)
f_peta(
x,
to = "PB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_peta(...)
f_exa(
x,
to = "EB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_exa(...)
f_zetta(
x,
to = "ZB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_zetta(...)
f_yotta(
x,
to = "YB",
binary = FALSE,
digits = 0,
suffix = f_data_abbreviation(to),
pad.char = " ",
less.than.replace = FALSE,
from = "B",
sep = "",
...
)
ff_yotta(...)
Arguments
x |
A vector of data units. |
binary |
logical. If |
digits |
The number of digits to round to. . |
pad.char |
A character to use for leading padding if lengths of output
are unequal. Use |
less.than.replace |
logical. If |
sep |
The separator to use between the number and data unit abbreviation. |
mix.units |
logical. If |
from |
The starting unit. Typically, this is assumed to be 'Bytes' ('B'). Must be one of c("Bit", "Byte", "Kilobyte", "Megabyte", "Gigabyte", "Terabyte", "Petabyte", "Exabyte", "Zettabyte", "Yottabyte") or c("b", "B", "KB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"). These are case sensitive. |
to |
The units to convert to. See the |
suffix |
A suffix to use for the units at the end of the numeric string. Typically the user will not interact with this argument. Meant for internal modularity of functions. |
... |
ignored. |
Value
Returns a converted and abbreviated vector of units of data.
Examples
## Not run:
x <- c(NA, '3', '-', -233456789, -2334567890, 10^(0:10))
f_data(x)
f_data(x, pad.char = NA)
f_data(x, mix.units = TRUE)
f_data(x, mix.units = TRUE, binary = TRUE)
f_data(x, mix.units = TRUE, binary = TRUE, digits = 2)
f_byte(100000000, from = 'GB', binary = TRUE)
f_giga(10000000000)
f_giga(10000000000, suffix = 'Gb')
library(tidyverse)
set.seed(15)
dat <- data_frame(
bytes = round(rnorm(7, 1e7, 7.95e6), 0),
days = constant_weekdays %>%
as_factor()
)
dat %>%
mutate(
data = f_data(bytes, less.than.replace = TRUE),
weekday = f_weekday(days, distinct = TRUE) %>%
as_factor()
)
dat %>%
mutate(days = days %>% as_factor()) %>%
ggplot(aes(days, bytes, group = 1)) +
geom_line() +
geom_point() +
scale_y_continuous(labels = f_data) +
scale_x_discrete(labels = ff_weekday(distinct = TRUE))
## End(Not run)