nomis_data_info {nomisr} | R Documentation |
Nomis data structures
Description
Retrieve metadata on the structure and available variables for all available data sets or the information available in a specific dataset based on its ID.
Usage
nomis_data_info(id, tidy = FALSE)
Arguments
id |
Dataset ID. If empty, returns data on all available datasets. If the ID of a dataset, returns metadata for that particular dataset. |
tidy |
If |
Value
A tibble with all available datasets and their metadata.
See Also
Examples
# Get info on all datasets
x <- nomis_data_info()
tibble::glimpse(x)
# Get info on a particular dataset
y <- nomis_data_info("NM_1658_1")
tibble::glimpse(y)
[Package nomisr version 0.4.7 Index]