This function returns a tibble of indicator IDs and related information that are available for download from the World Bank API
wb_indicators(lang, include_archive = FALSE)
lang | Language in which to return the results. If |
---|---|
include_archive |
|
# can get a new list of available indicators by downloading new cache fresh_cache <- wb_cache() fresh_indicators <- fresh_cache$indicators # or by running the wb_indicators() function directly fresh_indicators <- wb_indicators() # include archived indicators # see include_archive parameter description indicators_with_achrive <- wb_indicators(include_archive = TRUE)