Retrieves a dataframe describing the datasets available from ONS via the API.

ons_available_datasets()

Value

list of available datasets and associated metadata

Author

Neale Swinnerton neale@mastodonc.com

Examples

if (FALSE) {
# return information on all available datasets and then filter on specific id
datasets <- ons_available_datasets()

datasets %>% 
filter(id='health-accounts')
}
if (FALSE) {
# display just the ids
ons_available_datasets() %>% select(id)
}