Prints information about the IRW datasets or a specific table.
Usage
irw_info(table_name = NULL, details = FALSE)
Arguments
- table_name
Optional. Table name to describe; if NULL
, prints database‑level info.
- details
Logical. When TRUE
and table_name
is NULL
, also
prints a breakdown by dataset. Defaults to FALSE
.
Value
Invisibly returns NULL
.
Details
If table_name
is NULL
, shows combined totals across all IRW datasets.
Use details = TRUE
to also print a per‑dataset breakdown.
If a table name is provided, shows details for that table, automatically fetching
from the dataset where it resides.
Examples
if (FALSE) { # \dontrun{
irw_info() # Combined totals
irw_info(details = TRUE) # Combined + per-dataset breakdown
irw_info("frac20") # Specific table
} # }