CoolFace
Datasetpublic

electricsheepeurope/europe-who-adolescent-mortality-rate-mortado

Adolescent mortality rate (per 1 000 age specific cohort) | Europe (WHO GHO) πŸ‡ͺπŸ‡Ί 13,158 observations Β· 43 Europe countries Β· 1990–2023 Β· Repackaged by Electric Sheep Europe TL;DR This dataset contains 13,158 observations of Adolescent mortality rate (per 1 000 age specific cohort) data across 43 Europe countries, spanning 1990–2023, covering 1 distinct indicators. About the source Source: WHO Global Health Observatory Publisher: World Health… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepeurope/europe-who-adolescent-mortality-rate-mortado.

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

Adolescent mortality rate (per 1 000 age specific cohort) | Europe (WHO GHO)

πŸ‡ͺπŸ‡Ί 13,158 observations Β· 43 Europe countries Β· 1990–2023 Β· Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)

rows countries years indicators license

TL;DR

This dataset contains 13,158 observations of Adolescent mortality rate (per 1 000 age specific cohort) data across 43 Europe countries, spanning 1990–2023, covering 1 distinct indicators.

About the source

Geographic coverage

43 Europe countries Β· top rows shown below, sorted by row count:

CountryRowsFirst yearLast year
ALB30619902023
AND30619902023
AUT30619902023
BEL30619902023
BGR30619902023
BIH30619902023
BLR30619902023
CHE30619902023
CZE30619902023
DEU30619902023
DNK30619902023
ESP30619902023
EST30619902023
FIN30619902023
FRA30619902023
...28 more countries

Indicators (sample)

  • β€”MORTADO

Schema

ColumnTypeDescriptionExample
indicator_codeobjectβ€”MORTADO
country_iso3objectβ€”ALB
who_regionobjectβ€”EUR
yearint64β€”1990
dim1_typeobjectβ€”SEX
dim1objectβ€”SEX_BTSX
dim2_typeobjectβ€”AGEGROUP
dim2objectβ€”AGEGROUP_YEARS10-14
value_numericfloat64β€”2.588181135
value_lowfloat64β€”2.300966389
value_highfloat64β€”2.865525855
value_displayobjectβ€”2.6 [2.3-2.9]
last_updatedobjectβ€”2025-04-14T17:51:01.93+02:00

Disaggregation dimensions

The following columns provide disaggregation dimensions:

  • β€”`dim1_type` (1 unique values): SEX
  • β€”`dim1` (3 unique values): SEX_BTSX, SEX_FMLE, SEX_MLE
  • β€”`dim2_type` (1 unique values): AGEGROUP
  • β€”`dim2` (3 unique values): AGEGROUP_YEARS10-14, AGEGROUP_YEARS10-19, AGEGROUP_YEARS15-19

Usage

python
from datasets import load_dataset

ds = load_dataset("electricsheepeurope/europe-who-adolescent-mortality-rate-mortado")
df = ds["train"].to_pandas()
print(df.head())

Filter to one country

python
germany = df[df["country_iso3"] == "DEU"]

Time-series for a single indicator

python
sample = (df[df["indicator_code"] == "MORTADO"]
          .sort_values("year"))
sample.plot(x="year", y="value_numeric", title="MORTADO")

Pivot to country Γ— year matrix

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

Citation

bibtex
@misc{europe_who_adolescent_mortality_rate_mortado_2023,
  title        = {Adolescent mortality rate (per 1 000 age specific cohort) | Europe (WHO GHO)},
  author       = {World Health Organization},
  year         = {2023},
  url          = {https://www.who.int/data/gho},
  publisher    = {HuggingFace Datasets, repackaged by Electric Sheep Europe},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-who-adolescent-mortality-rate-mortado}}
}

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 Europe repackaging.

About Electric Sheep

Electric Sheep Europe is part of the Electric Sheep mission: a unified, ML-ready data layer for Europe 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/electricsheepeurope


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