Learn R Programming

xfun (version 0.30)

format_bytes: Format numbers of bytes using a specified unit

Description

Call the S3 method format.object_size() to format numbers of bytes.

Usage

format_bytes(x, units = "auto", ...)

Arguments

x

A numeric vector (each element represents a number of bytes).

units, ...

Passed to format().

Value

A character vector.

Examples

Run this code
# NOT RUN {
xfun::format_bytes(c(1, 1024, 2000, 1e+06, 2e+08))
xfun::format_bytes(c(1, 1024, 2000, 1e+06, 2e+08), units = "KB")
# }

Run the code above in your browser using DataLab