Skip to contents

Check if total dataset size is greater than 1 GB.

Usage

is_large(total_size_bytes)

Arguments

total_size_bytes

Numeric vector of sizes in bytes

Value

Logical vector, TRUE where size > 1 GB

Examples

if (FALSE) { # \dontrun{
# Find large datasets
list_datasets(full = TRUE) |>
  filter(is_large(total_size_bytes))
} # }