Retrieves a dataframe describing the datasets available from ONS via the API.
Value
list of available datasets and associated metadata
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)
}