Prints information about the IRW datasets or a specific table.
Usage
irw_info(table_name = NULL, details = FALSE, comp = FALSE, sim = 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.
- comp
Logical. If TRUE, uses the competition datasource.
- sim
Logical. If TRUE, uses the simulation datasource.
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 (main IRW only).
If a table name is provided, shows details for that table.
Examples
if (FALSE) { # \dontrun{
irw_info() # Combined totals
irw_info(details = TRUE) # Combined + per-dataset breakdown
irw_info("frac20") # Specific IRW table
irw_info("t20_hyper", comp = TRUE) # Competition table
irw_info("gilbert_meta_3", sim=TRUE)
} # }