Skip to contents

Check if total dataset size is less than 100 MB.

Usage

is_small(total_size_bytes)

Arguments

total_size_bytes

Numeric vector of sizes in bytes

Value

Logical vector, TRUE where size < 100 MB

Examples

if (FALSE) { # \dontrun{
# Find small datasets for quick testing
list_datasets(full = TRUE) |>
  filter(is_small(total_size_bytes))
} # }