
Get Indonesia's Literacy Rate (Age 15+) from World Bank
Source:R/get_indonesia_literacy_rate.R
get_indonesia_literacy_rate.RdRetrieves Indonesia's literacy rate for adults aged 15 and above,
expressed as a percentage, for the years 2010 to 2022 using the World Bank Open Data API.
The indicator used is SE.ADT.LITR.ZS.
Source
World Bank Open Data API: https://data.worldbank.org/indicator/SE.ADT.LITR.ZS
Value
A tibble with columns:
indicator: Indicator name.country: Country name ("Indonesia").year: Year (integer).value: Literacy rate (numeric percentage).
Returns NULL if the API is unavailable or returns an error.
Details
The function sends a GET request to the World Bank API.
If the request fails (timeout, network error, or invalid HTTP status),
the function returns NULL with an informative message.
Examples
# \donttest{
get_indonesia_literacy_rate()
#> # A tibble: 13 × 4
#> indicator country year value
#> <chr> <chr> <int> <dbl>
#> 1 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2022 NA
#> 2 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2021 NA
#> 3 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2020 96
#> 4 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2019 NA
#> 5 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2018 95.7
#> 6 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2017 NA
#> 7 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2016 95.4
#> 8 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2015 95.2
#> 9 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2014 95.1
#> 10 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2013 NA
#> 11 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2012 NA
#> 12 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2011 92.8
#> 13 Literacy rate, adult total (% of people ages 15 and abov… Indone… 2010 92.3
# }