
Get Hospital Beds per 1,000 People in Indonesia from World Bank
Source:R/get_indonesia_hospital_beds.R
get_indonesia_hospital_beds.RdRetrieves data on the number of hospital beds per 1,000 people in Indonesia
from 2010 to 2022 using the World Bank Open Data API.
The indicator used is SH.MED.BEDS.ZS.
Source
World Bank Open Data API: https://data.worldbank.org/indicator/SH.MED.BEDS.ZS
Value
A tibble with the following columns:
indicator: Indicator name (e.g., "Hospital beds (per 1,000 people)")country: Country name ("Indonesia")year: Year of the data (integer)value: Hospital beds per 1,000 people (numeric)
Returns NULL if the API is unavailable or returns an error.
Details
This function sends a GET request to the World Bank API.
If the API request fails or returns an error status code,
the function returns NULL with an informative message.
Examples
# \donttest{
get_indonesia_hospital_beds()
#> # A tibble: 13 × 4
#> indicator country year value
#> <chr> <chr> <int> <dbl>
#> 1 Hospital beds (per 1,000 people) Indonesia 2022 NA
#> 2 Hospital beds (per 1,000 people) Indonesia 2021 1.36
#> 3 Hospital beds (per 1,000 people) Indonesia 2020 1.4
#> 4 Hospital beds (per 1,000 people) Indonesia 2019 1.18
#> 5 Hospital beds (per 1,000 people) Indonesia 2018 1.16
#> 6 Hospital beds (per 1,000 people) Indonesia 2017 1.15
#> 7 Hospital beds (per 1,000 people) Indonesia 2016 1.1
#> 8 Hospital beds (per 1,000 people) Indonesia 2015 1.09
#> 9 Hospital beds (per 1,000 people) Indonesia 2014 1.05
#> 10 Hospital beds (per 1,000 people) Indonesia 2013 1.1
#> 11 Hospital beds (per 1,000 people) Indonesia 2012 0.92
#> 12 Hospital beds (per 1,000 people) Indonesia 2011 0.69
#> 13 Hospital beds (per 1,000 people) Indonesia 2010 0.65
# }