pretty_bytes | R Documentation |
Use pretty_bytes()
to format bytes. compute_bytes()
is the underlying
engine that may be useful for custom formatting.
pretty_bytes(bytes, style = c("default", "nopad", "6"))
compute_bytes(bytes, smallest_unit = "B")
bytes |
Numeric vector, number of bytes. |
style |
Formatting style:
|
smallest_unit |
A character scalar, the smallest unit to use. |
Character vector, the formatted sizes.
For compute_bytes
, a data frame with columns amount
, unit
,
negative
.
bytes <- c(1337, 133337, 13333337, 1333333337, 133333333337)
pretty_bytes(bytes)
pretty_bytes(bytes, style = "nopad")
pretty_bytes(bytes, style = "6")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.