--- license: cc-by-4.0 language: - en task_categories: - tabular-classification - tabular-regression - time-series-forecasting multilinguality: monolingual size_categories: - n<1K tags: - tabular - asia - our-world-in-data - literacy - owid - long-run-series - time-series pretty_name: "Literacy | Asia (Our World in Data)" --- # Literacy | Asia (Our World in Data) 🌏 **343 observations** · **47 Asia countries** · **1975–2023** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)* ![rows](https://img.shields.io/badge/rows-343-blue) ![countries](https://img.shields.io/badge/countries-47-green) ![years](https://img.shields.io/badge/years-1975–2023-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey) ## TL;DR This dataset contains **343 observations** of `Literacy` data across **47 Asia countries**, spanning **1975–2023**. ## About the source - **Source:** [Our World in Data](https://ourworldindata.org/grapher/literacy) - **Publisher:** Our World in Data - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** Literacy ## Geographic coverage 47 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `TUR` | 19 | 1975 | 2021 | | `PSE` | 18 | 1997 | 2022 | | `PAK` | 16 | 1981 | 2021 | | `KWT` | 15 | 1975 | 2020 | | `BGD` | 15 | 1981 | 2022 | | `SGP` | 15 | 1980 | 2021 | | `AZE` | 13 | 1999 | 2023 | | `LKA` | 13 | 1981 | 2023 | | `IRN` | 12 | 1976 | 2016 | | `IDN` | 12 | 1980 | 2020 | | `QAT` | 11 | 1986 | 2014 | | `MDV` | 10 | 1977 | 2019 | | `PHL` | 10 | 1980 | 2020 | | `THA` | 10 | 1980 | 2022 | | `UZB` | 9 | 2000 | 2022 | | ... | _32 more countries_ | | | ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `country_name` | `string` | — | `Afghanistan` | | `country_iso3` | `string` | — | `AFG` | | `year` | `int64` | — | `1979` | | `Literacy rate among adults` | `float64` | — | `18.0` | ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepasia/asia-owid-literacy") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python indonesia = df[df["country_iso3"] == "IDN"] ``` ### Time-series for a single indicator ```python sample = df.sort_values("year") sample.plot(x="year", y="Literacy rate among adults") ``` ## Citation ```bibtex @misc{asia_owid_literacy_2023, title = {Literacy | Asia (Our World in Data)}, author = {Our World in Data}, year = {2023}, url = {https://ourworldindata.org/grapher/literacy}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-owid-literacy}} } ``` ## License Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/). Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Asia repackaging. ## About Electric Sheep Electric Sheep Asia is part of the Electric Sheep mission: a unified, ML-ready data layer for Asia on HuggingFace. We pull data from authoritative open sources, normalize the schemas, package as Parquet, and publish with consistent dataset cards so researchers and developers can use `load_dataset()` to start working in seconds. Browse the full collection: [huggingface.co/electricsheepasia](https://huggingface.co/electricsheepasia) --- _Provenance: ingested 2026-06-06 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/literacy_