Tous les jeux de données

Age-standardized suicide rates (per 100 000 population)

Age-standardized suicide rates (per 100 000 population) Source: WHO Global Health Observatory (indicator MH_12). Rows are country x year; sex-disaggregated rows carry a sex label.

Source: WHO Global Health Observatory12,210 lignesMis à jour: 21/09/2026
suicidemental-healthwho

Qualité

97

Attribution

World Health Organization (WHO)

Schéma

ColonneTypeDescription
country_codestringCountry code (WHO GHO API field SpatialDim, country-level rows only).
country_namestringCountry name from the WHO GHO COUNTRY dimension labels.
yearintegerYear of observation (WHO GHO API field TimeDim).
sexstringSex disaggregation label (WHO GHO API dimension Dim1). Only present when the indicator is published sex-disaggregated.
valuefloatEstimate value for the country, year (and sex where present), as defined by the WHO GHO indicator (see the dataset description; WHO GHO API field NumericValue).
lowfloatLower bound of the published uncertainty interval (WHO GHO API field Low). Only present when the indicator publishes uncertainty intervals.
highfloatUpper bound of the published uncertainty interval (WHO GHO API field High). Only present when the indicator publishes uncertainty intervals.

Exemple de lignes

country_codecountry_nameyearsexvaluelowhigh
AFGAFG2000SEX_BTSX7.185716713.76494369312.08424313
AFGAFG2000SEX_FMLE4.9346592562.4760469519.064900755
AFGAFG2000SEX_MLE9.6096216335.17159344415.40750438
AFGAFG2001SEX_BTSX7.2703230993.8179789412.21566488
AFGAFG2001SEX_FMLE4.9961673052.5057226849.147812569

Utiliser avec un LLM

Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/who_gho/suicide_rate_age_standardized" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/who_gho/suicide_rate_age_standardized").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

Point d’accès API: https://datazimuts.com/v1/datasets/who_gho/suicide_rate_age_standardized

Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.