遇见数据集

electricsheepafrica/africa-ilo-eap-dwap-sex-age-edu-rt-labour-force-participation-rate-by-sex-age-and-edu

收藏
Hugging Face2026-05-26 更新2026-05-31 收录
官方服务:

资源简介:

--- license: cc-by-4.0 language: - en task_categories: - tabular-classification - tabular-regression - time-series-forecasting multilinguality: monolingual size_categories: - 100K<n<1M tags: - tabular - africa - ilostat - labour-force - ilo - labour - employment pretty_name: "Labour force participation rate by sex, age and education (%) | Africa (ILOSTAT)" --- # Labour force participation rate by sex, age and education (%) | Africa (ILOSTAT) 🌍 **186,586 observations** · **49 Africa countries** · **1982–2025** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)* ![rows](https://img.shields.io/badge/rows-186,586-blue) ![countries](https://img.shields.io/badge/countries-49-green) ![years](https://img.shields.io/badge/years-1982–2025-orange) ![indicators](https://img.shields.io/badge/indicators-1-purple) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey) ## TL;DR This dataset contains **186,586 observations** of `Labour force` data across **49 Africa countries**, spanning **1982–2025**, covering **1 distinct indicators**. ## About the source **ILOSTAT** is the ILO's central statistics database, the leading global source for labour statistics. It compiles indicators across employment, unemployment, wages, working time, child labour, informal economy, social protection, occupational injuries, and SDG decent work targets — drawing on national labour force surveys, household income surveys, establishment surveys, and administrative records. Coverage spans 200+ economies, with the ILO's Department of Statistics responsible for harmonisation. - **Source:** [ILOSTAT](https://www.ilo.org/shinyapps/bulkexplorer/?id=EAP_DWAP_SEX_AGE_EDU_RT) - **Publisher:** International Labour Organization (ILO) - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** Labour force ## Methodology Data pulled directly from the ILOSTAT REST API at `https://rplumber.ilo.org/data/indicator?id=EAP_DWAP_SEX_AGE_EDU_RT` and filtered to Africa ISO3 country codes. ILOSTAT harmonises raw survey microdata using ICLS (International Conference of Labour Statisticians) definitions; sources are flagged in the `source.label` column for traceability. ## Geographic coverage 49 Africa countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `ZAF` | 18,564 | 2000 | 2024 | | `MUS` | 13,464 | 2001 | 2024 | | `EGY` | 10,883 | 2008 | 2024 | | `GHA` | 7,935 | 1991 | 2024 | | `MLI` | 7,454 | 2009 | 2024 | | `AGO` | 7,081 | 2004 | 2025 | | `TZA` | 6,469 | 2001 | 2024 | | `RWA` | 6,098 | 2014 | 2025 | | `ZMB` | 6,092 | 2015 | 2024 | | `TUN` | 5,987 | 2005 | 2023 | | `BWA` | 5,380 | 2006 | 2024 | | `SEN` | 5,070 | 2011 | 2024 | | `UGA` | 4,932 | 2010 | 2021 | | `TGO` | 4,755 | 2006 | 2022 | | `ZWE` | 4,594 | 2011 | 2024 | | ... | _34 more countries_ | | | ## Indicators (sample) - `EAP_DWAP_SEX_AGE_EDU_RT` — Labour force participation rate by sex, age and education (%) ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `ref_area` | `string` | ISO 3166-1 alpha-3 country code | `AGO` | | `ref_area.label` | `string` | Country name in English | `Angola` | | `source` | `string` | ILOSTAT source code (e.g. labour force survey) | `BA:13951` | | `source.label` | `string` | Source name in English | `LFS - Employment Survey` | | `indicator` | `string` | ILOSTAT indicator code | `EAP_DWAP_SEX_AGE_EDU_RT` | | `indicator.label` | `string` | Indicator name in English | `Labour force participation rate by se…` | | `sex` | `string` | Disaggregation by sex (SEX_T = total, SEX_M = male, SEX_F = female) | `SEX_T` | | `sex.label` | `string` | — | `Total` | | `classif1` | `string` | First classification variable (age, education, status, etc.) | `AGE_YTHADULT_YGE15` | | `classif1.label` | `string` | — | `Age (Youth, adults): 15+` | | `classif2` | `string` | Second classification variable where applicable | `EDU_AGGREGATE_TOTAL` | | `classif2.label` | `string` | — | `Education (Aggregate levels): Total` | | `time` | `int64` | Observation year | `2025` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `74.342` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_classif` | `string` | — | `C3:3710` | | `note_classif.label` | `string` | — | `Nonstandard education level: Includin…` | | `note_indicator` | `string` | — | `I11:264` | | `note_indicator.label` | `string` | — | `Break in series: Methodology revised` | | `note_source` | `string` | — | `R1:3513` | | `note_source.label` | `string` | — | `Repository: ILO-STATISTICS - Micro da…` | ## Disaggregation dimensions The following columns provide disaggregation dimensions: - **`sex`** (3 unique values): `SEX_T`, `SEX_M`, `SEX_F` ## Data quality & caveats - Data is annual frequency. Some indicators also publish monthly or quarterly series — those are not included here. - When an indicator has multiple sources for the same country×year, the ILO-selected 'best source' is used. - Disaggregation columns (`sex`, `classif1`, `classif2`) are non-null only when the indicator publishes that breakdown. ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-ilo-eap-dwap-sex-age-edu-rt-labour-force-participation-rate-by-sex-age-and-edu") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python kenya = df[df["ref_area"] == "KEN"] ``` ### Time-series for a single indicator ```python sample = (df[df["indicator"] == "EAP_DWAP_SEX_AGE_EDU_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EAP_DWAP_SEX_AGE_EDU_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EAP_DWAP_SEX_AGE_EDU_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{africa_ilo_eap_dwap_sex_age_edu_rt_labour_force_participation_rate_by_sex_age_and_edu_2025, title = {Labour force participation rate by sex, age and education (%) | Africa (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EAP_DWAP_SEX_AGE_EDU_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-ilo-eap-dwap-sex-age-edu-rt-labour-force-participation-rate-by-sex-age-and-edu}} } ``` ## License Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/). Original data © International Labour Organization (ILO). When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging. ## About Electric Sheep Electric Sheep Africa is part of the Electric Sheep mission: a unified, ML-ready data layer for Africa 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/electricsheepafrica](https://huggingface.co/electricsheepafrica) --- _Provenance: ingested 2026-05-26 via the Electric Sheep pipeline. Source URL: https://www.ilo.org/shinyapps/bulkexplorer/?id=EAP_DWAP_SEX_AGE_EDU_RT_

This dataset contains statistics on the labour force participation rate by sex, age and education (%) for Africa, sourced from the International Labour Organization (ILOSTAT) database. It includes 186,586 observations across 49 African countries, spanning the years 1982 to 2025. The core indicator is EAP_DWAP_SEX_AGE_EDU_RT, representing the labour force participation rate, disaggregated by sex (total, male, female), age groups, and education levels. The schema comprises columns such as country code (ref_area), indicator code (indicator), year (time), observed value (obs_value), along with source, classification, and note columns. It is suitable for machine learning tasks like tabular classification, regression, and time-series forecasting, and can be used for analyzing labour market trends, policy research, and economic modeling in Africa.

提供机构:
electricsheepafrica
搜集汇总
数据集介绍
electricsheepafrica/africa-ilo-eap-dwap-sex-age-edu-rt-labour-force-participation-rate-by-sex-age-and-edu 数据集图片
构建方式
该数据集系基于国际劳工组织统计数据库(ILOSTAT)所收录的非洲地区劳动力市场指标,经由Electric Sheep Africa团队进行元数据标准化与格式重构而成。原始数据涵盖1982年至2025年间49个非洲国家的劳动力参与率观测记录,共计186,586条。重构过程中,团队对变量命名、地理标识及指标口径进行了统一映射,并以Parquet格式发布,同时补充了标准化的元数据说明与溯源信息,确保数据在保持原始统计含义的前提下具备更高的可发现性与可复用性。
特点
数据集聚焦于非洲区域劳动力参与率这一核心劳动经济学指标,按性别、年龄组与教育程度三重维度进行细分,时间跨度逾四十年,覆盖近五十个国家,样本规模介于十万至百万之间。数据以表格与文本双模态呈现,字段结构清晰,支持分类与回归两类分析任务。其突出特点在于元数据驱动设计,虽部分地理与出版方信息尚有缺口,但整体上为非洲劳动市场研究提供了长时序、多维度、可追溯的结构化证据基础。
使用方法
研究者可借助Hugging Face datasets库直接加载该数据集,通过load_dataset函数获取数据对象并检视其特征结构与样本内容。对于表格型分析,可将相应拆分转换为Pandas数据框以进行统计建模与可视化。使用时应优先查阅仓库中的数据文件以确认变量定义与计量单位,利用显式国家字段进行地理筛选,并在建模前审慎评估缺失值分布,避免在未经验证的情况下进行插补或推断政策含义。
背景与挑战
背景概述
劳动力市场参与率是衡量经济活动人口比例的核心指标,其按性别、年龄与教育程度的分组统计对于理解非洲大陆的人力资本配置与就业结构具有关键价值。该数据集由Electric Sheep Africa工程团队于2026年标准化发布,源自国际劳工组织ILOSTAT中央统计数据库,涵盖49个非洲国家、1982至2025年间186,586条观测记录,以CC BY 4.0许可开放。其核心研究问题在于揭示非洲各国不同人口群体劳动力参与率的长期演变与结构性差异,为劳动经济学、发展政策评估及性别研究提供可复现的微观证据基础,并推动非洲公开数据的标准化发现与利用。
当前挑战
该数据集所回应的领域挑战在于非洲劳动力统计长期面临覆盖碎片化、指标口径不一与时间序列断裂等问题,难以支撑跨国可比分析。构建过程中,ILOSTAT原始数据存在缺失值普遍、国家编码与教育分类标准异构等困难,Electric Sheep Africa虽通过元数据清单进行结构化重包装,但仍面临上游元数据字段缺失(如国家与发布者信息不完整)、隐含地理假设需显式文档化,以及变量定义与单位需在使用前核实等具体挑战,对下游建模的可靠性与可解释性构成直接约束。
常用场景
经典使用场景
在劳动经济学与人口统计学的交叉领域,该数据集构成了剖析非洲大陆劳动力供给结构的核心实证资源。其经典应用集中于按性别、年龄组与教育程度三个维度交叉分解劳动参与率,从而绘制出非洲各国劳动供给的精细画像。研究者依托1982至2025年覆盖四十九国的十八万余条观测,可系统比较不同人口群体的经济活动活跃度,识别青年与女性等特定群体的参与低谷,并追踪其随时间的演变轨迹。
衍生相关工作
围绕该数据集已衍生出一系列聚焦非洲劳动市场异质性的分析工作,包括跨国青年就业脆弱性比较研究、女性劳动参与的决定因素分解,以及教育与技能错配的跨国测算。部分研究将其与非洲家庭调查和人口健康调查数据进行地理与年份层面的链接,以构建更具解释力的微观—宏观联合模型。这些工作共同拓展了ILOSTAT数据在非洲区域研究中的应用边界。
数据集最近研究
最新研究方向
在劳动经济学与发展经济学交叉领域,基于ILOSTAT非洲劳动力参与率数据的前沿研究正聚焦于性别、年龄与教育维度的异质性分解。伴随非洲大陆自由贸易区建设与人口红利议题升温,研究者利用该数据集跨越1982至2025年的186586条观测,识别女性与青年群体参与率的粘性特征,并借助教育与年龄交互项揭示技能错配对劳动供给的抑制效应。相关分析为评估结构性转型政策、设计包容性就业干预提供了跨国可比证据,亦推动了非洲劳动市场微观模拟与机器学习预测建模的发展。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务