powered by
Retrieves information about indicators available in the UNESCO Institute for Statistics (UIS) API.
uis_get_indicators( version = NULL, disaggregations = FALSE, glossary_terms = FALSE )
A data frame with information about indicators:
Character. The unique identifier for the indicator.
Character. The name of the indicator.
Character. The theme of the indicator.
Date. The last update date.
Character. A description about the last update date.
List column. Contains nested information about data availability, including total record count and timeline min/max years.
List column. Contains information about entity types associated with the indicator.
Character. The API version to use. If NULL (default), the API's default version will be used. See uis_get_versions for a list of supported versions.
Logical. If TRUE, includes disaggregation information for indicators. Default is FALSE.
Logical. If TRUE, includes glossary terms associated with indicators. Default is FALSE.
# \donttest{ # Download indicators uis_get_indicators() # Download indicators with glossary terms and disaggregations uis_get_indicators(disaggregations = TRUE, glossary_terms = TRUE) # }
Run the code above in your browser using DataLab