Skip to contents

A wrapper for dplyr::collect() that includes a progress bar Pull a lazy tibble into your local environment from the OJO database, using ojo_crim_cases(), ojo_civ_cases(), etc.

Usage

ojo_collect(.data, ..., .silent = !rlang::is_interactive())

Arguments

.data

The lazy tibble to be pulled

...

Placeholder for additional arguments

.silent

Should the command line interface elements be shown? Defaults to TRUE if the user is in an interactive session, and FALSE if they are not.

Value

A local tibble

Examples

if (FALSE) { # \dontrun{
ojo_crim_cases() |>
 head(100) |>
 ojo_collect()
} # }