Description Usage Arguments Details Value Examples
Given a dimension and a code, returns the corresponding GHO data.
1 | get_gho_data(code, dimension = "GHO", filter = NULL, ...)
|
code |
A GHO code. |
dimension |
A GHO dimension. |
filter |
A named list of filtering parameters (see details). |
... |
Additional query parameters (see details). |
Filtering parameters are given as a named list of the
form list(COUNTRY = "FRA", ...)
.
Query parameters follow the specification described on the WHO website http://apps.who.int/gho/data/node.resources.api.
A data_frame
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | result <- get_gho_data(
dimension = "GHO",
code = "MDG_0000000001"
)
print(result, width = Inf)
result <- get_gho_data(
dimension = "GHO",
code = "MDG_0000000001",
filter = list(
REGION = "EUR",
YEAR = "2015"
)
)
print(result, width = Inf)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.