https://github.com/aphp/rgho
:globe_with_meridians:Access WHO Global Health Observatory Data From R
https://github.com/aphp/rgho
Last synced: about 1 year ago
JSON representation
:globe_with_meridians:Access WHO Global Health Observatory Data From R
- Host: GitHub
- URL: https://github.com/aphp/rgho
- Owner: aphp
- License: gpl-3.0
- Created: 2022-07-28T15:24:50.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-09T19:13:25.000Z (over 2 years ago)
- Last Synced: 2025-03-26T09:21:36.636Z (over 1 year ago)
- Language: R
- Homepage:
- Size: 167 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
[](https://github.com/aphp/rgho/actions/workflows/R-CMD-check.yaml)
# rgho - Access WHO Global Health Observatory Data From R
`rgho` is an `R` package to access [WHO GHO data](https://www.who.int/data/gho/) from `R` via the OData API an API providing a simple query interface to the World Health Organization's data and statistics content.
You can install:
* the latest released version from CRAN with:
```r
install.packages("rgho")
```
* the latest development version from github with:
```r
devtools::install_github("aphp/rgho")
```
## Main features
* List available dimensions and values with `get_gho_dimensions()` and `get_gho_values()`.
* Download data with `get_gho_data()`.
## Documentation
* Introduction in `vignette("a-intro", "rgho")`.
* List of GHO dimensions in `vignette("b-dimensions", "rgho")`.
* List of values for the `GHO` dimension in `vignette("c-values-gho", "rgho")`.
* List of values for the `COUNTRY` dimension in `vignette("d-country", "rgho")`.
* Details about how requests are performed in `vignette("e-details", "rgho")`.
## Dev
Kevin Zarca