All datasets

Global education-spending signals

Annual government education-expenditure signals from the World Bank World Development Indicators (UNESCO via WDI, 1970 ->, % of GDP, keyless): per-economy 5-year changes, 10-year OLS trend slopes, 3-sigma anomaly flags, linear-extrapolation forecasts, 10-year z-scores, per-year cross-country ranks, and high/low spender and investment-push flags. The education-investment lens — which governments are building human capital and which are disinvesting — not covered elsewhere in the catalog. Country labels normalized to ISO alpha-3. Raw data: World Bank WDI indicator SE.XPD.TOTL.GD.ZS.

Source: Education Spending Signals (derived)5,432 rowsUpdated: 9/22/2026License: CC-BY-4.0
educationhuman-capitalunescoworld-bankwdifiscaldevelopmentrankingsmomentumanomaly-detectionforecastingsignals

Quality

95.3

Attribution

World Bank, World Development Indicators (derived signals by Frontier Data Hub)

Schema

ColumnTypeDescription
datestringReference year (World Bank WDI, annual).
countrystring
country_codestring
series_idstringWorld Bank WDI indicator code: SE.XPD.TOTL.GD.ZS (government expenditure on education, total, as a percent of GDP).
series_labelstringIndicator title as published in the World Bank World Development Indicators.
valuefloatGeneral government expenditure on education (current, capital, and transfers) expressed as a percentage of GDP. Includes expenditure funded by transfers from international sources to government. General government usually refers to local, regional and central governments.
change_5y_ppfloat
trend_slope_10yfloat
anomaly_flaginteger
forecast_5yfloat
spend_z_10yfloat
rankinteger
high_edu_flaginteger
low_edu_flaginteger
rising_flaginteger

Sample rows

datecountrycountry_codeseries_idseries_labelvaluechange_5y_pptrend_slope_10yanomaly_flagforecast_5yspend_z_10yrankhigh_edu_flaglow_edu_flagrising_flag
1998-01-01ArubaABWSE.XPD.TOTL.GD.ZSGovernment expenditure on education, total (% of GDP)4.76316022872925025000
1999-01-01ArubaABWSE.XPD.TOTL.GD.ZSGovernment expenditure on education, total (% of GDP)4.39526987075806054000
2000-01-01ArubaABWSE.XPD.TOTL.GD.ZSGovernment expenditure on education, total (% of GDP)4.71468019485474046000
2001-01-01ArubaABWSE.XPD.TOTL.GD.ZSGovernment expenditure on education, total (% of GDP)4.79898023605347047000
2002-01-01ArubaABWSE.XPD.TOTL.GD.ZSGovernment expenditure on education, total (% of GDP)4.872200012207030.0621789932250966305.18309497833251346000

Download sample data

Download the full sample snapshot for this dataset (sample rows, not the complete dataset).

Use with an LLM

Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).

cURL

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

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/education_spending_signals/global_education_spending_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)

API endpoint: https://datazimuts.com/v1/datasets/education_spending_signals/global_education_spending_signals

Tip: fetch /llms.txt for the full machine-readable catalog.