CoolFace
Datasetpublic

electricsheepasia/asia-who-population-using-at-least-basic-sanitation-services

Population using at least basic sanitation services (%) | Asia (WHO GHO) 🌏 3,206 observations · 48 Asia countries · 2000–2024 · Repackaged by Electric Sheep Asia TL;DR This dataset contains 3,206 observations of Population using at least basic sanitation services (%) data across 48 Asia countries, spanning 2000–2024, covering 1 distinct indicators. About the source Source: WHO Global Health Observatory Publisher: World Health Organization… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepasia/asia-who-population-using-at-least-basic-sanitation-services.

sourceHugging Facecc-by-4.0updated 4mo agoView on Hugging Face
0likes88downloads
Dataset Card

Population using at least basic sanitation services (%) | Asia (WHO GHO)

🌏 3,206 observations · 48 Asia countries · 2000–2024 · Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)

rows countries years indicators license

TL;DR

This dataset contains 3,206 observations of Population using at least basic sanitation services (%) data across 48 Asia countries, spanning 2000–2024, covering 1 distinct indicators.

About the source

Geographic coverage

48 Asia countries · top rows shown below, sorted by row count:

CountryRowsFirst yearLast year
AFG7520002024
ARE7520002024
ARM7520002024
AZE7520002024
BGD7520002024
BTN7520002024
CYP7520002024
CHN7520002024
IND7520002024
IRN7520002024
GEO7520002024
IDN7520002024
IRQ7520002024
ISR7520002024
KAZ7520002024
...33 more countries

Indicators (sample)

  • —WSH_SANITATION_BASIC

Schema

ColumnTypeDescriptionExample
indicator_codeobject—WSH_SANITATION_BASIC
country_iso3object—AFG
who_regionobject—EMR
yearint64—2000
dim1_typeobject—RESIDENCEAREATYPE
dim1object—RESIDENCEAREATYPE_RUR
value_numericfloat64—19.568568857
value_lowobject——
value_highobject——
value_displayobject—20
last_updatedobject—2026-01-23T16:14:42.183+01:00

Disaggregation dimensions

The following columns provide disaggregation dimensions:

  • —`dim1_type` (1 unique values): RESIDENCEAREATYPE
  • —`dim1` (3 unique values): RESIDENCEAREATYPE_RUR, RESIDENCEAREATYPE_TOTL, RESIDENCEAREATYPE_URB

Usage

python
from datasets import load_dataset

ds = load_dataset("electricsheepasia/asia-who-population-using-at-least-basic-sanitation-services")
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[df["indicator_code"] == "WSH_SANITATION_BASIC"]
          .sort_values("year"))
sample.plot(x="year", y="value_numeric", title="WSH_SANITATION_BASIC")

Pivot to country × year matrix

python
matrix = (df[df["indicator_code"] == "WSH_SANITATION_BASIC"]
          .pivot_table(index="year", columns="country_iso3", values="value_numeric"))
print(matrix.tail())

Citation

bibtex
@misc{asia_who_population_using_at_least_basic_sanitation_services_2024,
  title        = {Population using at least basic sanitation services (%) | Asia (WHO GHO)},
  author       = {World Health Organization},
  year         = {2024},
  url          = {https://www.who.int/data/gho},
  publisher    = {HuggingFace Datasets, repackaged by Electric Sheep Asia},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-who-population-using-at-least-basic-sanitation-services}}
}

License

Released under cc-by-4.0.

Original data © World Health Organization. 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


Provenance: ingested 2026-05-29 via the Electric Sheep pipeline. Source URL: https://www.who.int/data/gho