SDG goal progress signals (2030-target progress velocity, on-track flags)
Value-added UN Sustainable Development Goal progress signals: 10-year progress rates, cross-country improvement z-scores, naive drift projections to the 2030 deadline, and on-track/off-track flags for poverty, electricity access, safe drinking water, and maternal mortality across ~200 countries. All computation is local pandas/numpy; no paid models or APIs.
Qualité
Attribution
United Nations Statistics Division, SDG Global Database; derived signals by Frontier Data Hub
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | string | Reference year of the observation (first day of the year), as published in the UN SDG Global Database. |
| country | string | |
| country_code | string | |
| series_id | string | Derived series identifier: SDG_POVERTY_3D (poverty headcount at $3.00/day), SDG_ELEC_ACCESS (access to electricity), SDG_SAFE_WATER (safely managed drinking water), or SDG_MMR (maternal mortality ratio). |
| series_label | string | Human-readable SDG indicator label from the UN SDG Global Database, naming the indicator and its unit. |
| value | float | Indicator value as published in the UN SDG Global Database: percentages for poverty, electricity access and safe water; deaths per 100,000 live births for maternal mortality. |
| progress_rate_10y | float | |
| improvement_z | float | |
| projected_2030 | float | |
| gap_2030 | float | |
| on_track_flag | integer | |
| rank | float |
Exemple de lignes
| date | country | country_code | series_id | series_label | value | progress_rate_10y | improvement_z | projected_2030 | gap_2030 | on_track_flag | rank |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 1963-01-01 | United States | USA | SDG_POVERTY_3D | Poverty headcount ratio at $3.00 a day (%, UN SDG Global Database) | 1.6 | — | — | — | — | 0 | — |
| 1964-01-01 | United States | USA | SDG_POVERTY_3D | Poverty headcount ratio at $3.00 a day (%, UN SDG Global Database) | 1.5 | — | — | — | — | 0 | — |
| 1965-01-01 | United States | USA | SDG_POVERTY_3D | Poverty headcount ratio at $3.00 a day (%, UN SDG Global Database) | 1.3 | — | — | — | — | 0 | — |
| 1966-01-01 | United States | USA | SDG_POVERTY_3D | Poverty headcount ratio at $3.00 a day (%, UN SDG Global Database) | 1.2 | — | — | — | — | 0 | — |
| 1967-01-01 | United States | USA | SDG_POVERTY_3D | Poverty headcount ratio at $3.00 a day (%, UN SDG Global Database) | 1.1 | — | — | — | — | 0 | — |
Télécharger un échantillon
Téléchargez l'échantillon complet de ce jeu de données (lignes d'exemple, pas le jeu complet).
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/sdg_progress_signals/sdg_goal_progress_signals" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/sdg_progress_signals/sdg_goal_progress_signals").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/sdg_progress_signals/sdg_goal_progress_signals
Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.