Retrieves observations for a specific indicator from the WHO GHO OData API, with optional filters by spatial level, country / region and year range.
Usage
gho_data(
indicator,
spatial_type = NULL,
area = NULL,
year_from = NULL,
year_to = NULL,
dim1 = NULL,
dim2 = NULL,
dim3 = NULL
)Arguments
- indicator
Character scalar. The indicator code (e.g.
"NCDMORT3070"). Usegho_indicators()to find codes.- spatial_type
Character. Spatial dimension to filter on: one of
"country","region","global", orNULL(all levels, the default).- area
Character vector of country or region codes (e.g.
c("FRA", "DEU")). DefaultNULLreturns all areas.- year_from
Numeric. Start year filter (inclusive). Default
NULL.- year_to
Numeric. End year filter (inclusive). Default
NULL.- dim1, dim2, dim3
Character vector of values to keep for the
Dim1/Dim2/Dim3breakdown columns, filtered server-side (e.g.dim1 = "SEX_BTSX"for both-sexes rows only, ordim1 = c("SEX_MLE", "SEX_FMLE")). The meaning of each dimension varies by indicator (Dim1is sex for one indicator, an age group for another); usegho_dimensions()to discover the values available for a given indicator. Rows where the dimension is empty (null) are excluded by the filter. DefaultNULL(no filtering).
Value
A tibble of indicator observations, or an empty tibble when the service is unreachable.
Examples
# \donttest{
# Country-level data for one indicator
gho_data("NCDMORT3070", spatial_type = "country")
#> Fetching:
#> <https://ghoapi.azureedge.net/api/NCDMORT3070?$filter=SpatialDimType%20eq%20%27COUNTRY%27>
#> Waiting 2s for retry backoff ■■■■■■■■■■■■■■■
#> Waiting 2s for retry backoff ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
#> Waiting 4s for retry backoff ■■■■■■■■
#> Waiting 4s for retry backoff ■■■■■■■■■■■■■■
#> Waiting 4s for retry backoff ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
#> Warning: GHO request failed.
#> ℹ URL:
#> <https://ghoapi.azureedge.net/api/NCDMORT3070?$filter=SpatialDimType%20eq%20%27COUNTRY%27>
#> ✖ Failed to perform HTTP request. Caused by error in
#> `curl::curl_fetch_memory()`: ! Timeout was reached [ghoapi.azureedge.net]:
#> Operation timed out after 30001 milliseconds with 145559 bytes received
#> # A tibble: 0 × 0
# Specific countries and years
gho_data("WHOSIS_000001", area = c("FRA", "DEU"), year_from = 2015)
#> Assuming `spatial_type` = "country" since `area` was given.
#> ℹ Pass `spatial_type` explicitly to silence this message.
#> Fetching:
#> <https://ghoapi.azureedge.net/api/WHOSIS_000001?$filter=SpatialDimType%20eq%20%27COUNTRY%27%20and%20SpatialDim%20in%20%28%27FRA%27%2C%27DEU%27%29%20and%20TimeDim%20ge%202015>
#> # A tibble: 42 × 25
#> Id IndicatorCode SpatialDimType SpatialDim TimeDimType ParentLocationCode
#> <int> <chr> <chr> <chr> <chr> <chr>
#> 1 1.29e6 WHOSIS_000001 COUNTRY DEU YEAR EUR
#> 2 1.36e6 WHOSIS_000001 COUNTRY DEU YEAR EUR
#> 3 2.13e6 WHOSIS_000001 COUNTRY FRA YEAR EUR
#> 4 2.41e6 WHOSIS_000001 COUNTRY FRA YEAR EUR
#> 5 2.67e6 WHOSIS_000001 COUNTRY FRA YEAR EUR
#> 6 2.93e6 WHOSIS_000001 COUNTRY DEU YEAR EUR
#> 7 3.46e6 WHOSIS_000001 COUNTRY DEU YEAR EUR
#> 8 3.69e6 WHOSIS_000001 COUNTRY FRA YEAR EUR
#> 9 3.77e6 WHOSIS_000001 COUNTRY FRA YEAR EUR
#> 10 4.48e6 WHOSIS_000001 COUNTRY DEU YEAR EUR
#> # ℹ 32 more rows
#> # ℹ 19 more variables: ParentLocation <chr>, Dim1Type <chr>, Dim1 <chr>,
#> # TimeDim <int>, Dim2Type <lgl>, Dim2 <lgl>, Dim3Type <lgl>, Dim3 <lgl>,
#> # DataSourceDimType <lgl>, DataSourceDim <lgl>, Value <chr>,
#> # NumericValue <dbl>, Low <dbl>, High <dbl>, Comments <lgl>, Date <chr>,
#> # TimeDimensionValue <chr>, TimeDimensionBegin <chr>, TimeDimensionEnd <chr>
# Keep only the both-sexes breakdown, filtered server-side
gho_data("NCDMORT3070", spatial_type = "country", dim1 = "SEX_BTSX")
#> Fetching:
#> <https://ghoapi.azureedge.net/api/NCDMORT3070?$filter=SpatialDimType%20eq%20%27COUNTRY%27%20and%20Dim1%20in%20%28%27SEX_BTSX%27%29>
#> Waiting 2s for retry backoff ■■■■■■■■■■■■■■■
#> Waiting 2s for retry backoff ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
#> Waiting 4s for retry backoff ■■■■■■■■
#> Waiting 4s for retry backoff ■■■■■■■■■■■■■■■■■■■■■■
#> Waiting 4s for retry backoff ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
#> Warning: GHO request failed.
#> ℹ URL:
#> <https://ghoapi.azureedge.net/api/NCDMORT3070?$filter=SpatialDimType%20eq%20%27COUNTRY%27%20and%20Dim1%20in%20%28%27SEX_BTSX%27%29>
#> ✖ Failed to perform HTTP request. Caused by error in
#> `curl::curl_fetch_memory()`: ! Stream error in the HTTP/2 framing layer
#> [ghoapi.azureedge.net]: HTTP/2 stream 9 was not closed cleanly:
#> INTERNAL_ERROR (err 2)
#> # A tibble: 0 × 0
# }