CoolFace
Datasetpublic

electricsheepasia/asia-who-raised-blood-pressure-bp03

Africa — WHO GHO: Raised blood pressure (SBP>=140 OR DBP>=90) (crude estimate) Indicator code: BP_03 HuggingFace slug: electricsheepafrica/asia-who-raised-blood-pressure-bp03 Source: WHO Global Health Observatory License: CC BY 4.0 — WHO Open Data Dataset Description This dataset contains country-level observations for the WHO GHO indicator "Raised blood pressure (SBP>=140 OR DBP>=90) (crude estimate)" (BP_03) across Asian nations, spanning 1990–2019. It is part… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepasia/asia-who-raised-blood-pressure-bp03.

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

Africa — WHO GHO: Raised blood pressure (SBP>=140 OR DBP>=90) (crude estimate)

Indicator code: BP_03 HuggingFace slug: electricsheepafrica/asia-who-raised-blood-pressure-bp03 Source: WHO Global Health Observatory License: CC BY 4.0 — WHO Open Data


Dataset Description

This dataset contains country-level observations for the WHO GHO indicator "Raised blood pressure (SBP>=140 OR DBP>=90) (crude estimate)" (BP_03) across Asian nations, spanning 1990–2019. It is part of the Electric Sheep Asia collection — a unified, ML-ready repository of African data.

Data is sourced directly from the WHO Global Health Observatory OData API and repackaged as Parquet files with a consistent schema. All values are drawn from NumericValue (the float-precision field), not the display string. Confidence interval bounds (value_low, value_high) are included where available.


Coverage

Countries48 Asian nations
Years1990 – 2019
Total rows4,320
Region filterWHO Asia regions (SEAR + WPR + EMR), filtered to Asian ISO3 codes

Countries included: AFG, ARE, ARM, AZE, BGD, BHR, BRN, BTN, CHN, CYP, GEO, IDN, IND, IRN, IRQ, ISR, JOR, JPN, KAZ, KGZ … and 28 more


Sub-dimensions

  • —SEX: SEXBTSX, SEXFMLE, SEX_MLE

When an indicator is stratified (e.g., by sex or age group), each unique combination of country × year × dimension produces a separate row. Filter on dim1 / dim2 for the stratum you need, or aggregate across strata.


Schema

ColumnTypeDescription
indicator_codestringGHO indicator code (e.g., BP_03)
country_iso3stringISO 3166-1 alpha-3 country code
who_regionstringWHO region code (always AFR here)
yearintObservation year
value_numericfloatPoint estimate (primary ML target)
value_lowfloatLower confidence bound (if available)
value_highfloatUpper confidence bound (if available)
value_displaystringFormatted display string, e.g. "58.3 [57.7–59.0]"
dim1_typestringDimension 1 type, e.g. SEX, RESIDENCEAREATYPE
dim1stringDimension 1 value, e.g. SEX_BTSX, RURAL
dim2_typestringDimension 2 type (if present)
dim2stringDimension 2 value (if present)
last_updatedstringWHO data last-updated timestamp

Usage

python
from datasets import load_dataset

ds = load_dataset("electricsheepafrica/asia-who-raised-blood-pressure-bp03")
df = ds["train"].to_pandas()

# Both-sexes, national level only
national = df[df.get("dim1", "").str.endswith("_BTSX") | df.get("dim1", pd.Series()).isna()]

# Time series for one country
kenya = df[df["country_iso3"] == "KEN"].sort_values("year")

Citation

bibtex
@misc{who_gho_bp_03,
  title     = {WHO Global Health Observatory: Raised blood pressure (SBP>=140 OR DBP>=90) (crude estimate)},
  author    = {World Health Organization},
  year      = {2019},
  url       = {https://www.who.int/data/gho/data/indicators/indicator-details/GHO/BP_03},
  note      = {Repackaged by Electric Sheep Asia}
}

Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia) from WHO GHO open data. Original data © World Health Organization, licensed CC BY 4.0.