All datasets

Global gender labor gap signals (female-male gaps, convergence flags)

Value-added gender labour-market signals from free ILOSTAT modelled estimates: female-minus-male unemployment, participation and employment gaps with 10-year convergence trends, convergence flags, 3-sigma anomaly flags and cross-country gap ranks across ~190 countries. All computation is local pandas/numpy; no paid models or APIs.

Source: Global Gender Labor Gap Signals (derived)20,984 rowsUpdated: 9/22/2026License: CC-BY-4.0
genderlabour-marketiloilostatinequalityconvergencesignals

Quality

99.2

Attribution

International Labour Organization, ILOSTAT, https://ilostat.ilo.org/data/; derived signals by Frontier Data Hub

Schema

ColumnTypeDescription
datestringReference year of the observation (first day of the year), as published in the ILOSTAT modelled estimates.
countrystring
country_codestring
series_idstringDerived series identifier: GAP_UNEMP_FM (unemployment-rate gap), GAP_LFP_FM (labour-force-participation gap), or GAP_EPR_FM (employment-to-population-ratio gap).
series_labelstringHuman-readable gap label naming the labour indicator and the female-minus-male construction, from the ILOSTAT modelled estimates.
valuefloatFemale rate minus male rate in percentage points, computed from the ILOSTAT modelled estimates by sex (annual).
gap_trend_10yfloat
convergence_flaginteger
anomaly_flaginteger
rankfloat

Sample rows

datecountrycountry_codeseries_idseries_labelvaluegap_trend_10yconvergence_flaganomaly_flagrank
1990-01-01AfghanistanAFGGAP_LFP_FMFemale-minus-male labour force participation rate gap (percentage points, ILO modelled estimates)-64.261006
1990-01-01AngolaAGOGAP_LFP_FMFemale-minus-male labour force participation rate gap (percentage points, ILO modelled estimates)-3.411000000000001400182
1990-01-01AlbaniaALBGAP_LFP_FMFemale-minus-male labour force participation rate gap (percentage points, ILO modelled estimates)-20.43099999999999700108
1990-01-01United Arab EmiratesAREGAP_LFP_FMFemale-minus-male labour force participation rate gap (percentage points, ILO modelled estimates)-60.476000000000006009
1990-01-01ArgentinaARGGAP_LFP_FMFemale-minus-male labour force participation rate gap (percentage points, ILO modelled estimates)-32.9820000000000060059

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/gender_labor_gap_signals/global_gender_labor_gap_signals" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/gender_labor_gap_signals/global_gender_labor_gap_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/gender_labor_gap_signals/global_gender_labor_gap_signals

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