Fetches and displays information for the IRW database or a specified table.
If no table name is provided, it returns general database information.
If a table name is provided, it returns detailed information about that table.
Usage
irw_info(table_name = NULL)
Arguments
- table_name
Optional. A character string specifying the name of the table to retrieve information for.
Examples
if (FALSE) { # \dontrun{
irw_info() # Prints database information
irw_info("abortion") # Prints table-specific information
} # }