nomis_data_info: Nomis data structures

View source: R/dataset_info.R

nomis_data_infoR 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 TRUE, converts tibble names to snakecase.

Value

A tibble with all available datasets and their metadata.

See Also

nomis_get_data()

nomis_get_metadata()

nomis_overview()

nomis_codelist()

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)



ropensci/nomisr documentation built on June 19, 2022, 9:05 p.m.