遇见数据集

electricsheepafrica/africa-ilo-emp-xtru-sex-edu-mts-nb-time-related-underemployment-by-sex-education-and

收藏
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: - 1K<n<10K tags: - tabular - africa - ilostat - time-related-underemployment - ilo - labour - employment pretty_name: "Time-related underemployment by sex, education and marital status (thousands) | Africa (ILOSTAT)" --- # Time-related underemployment by sex, education and marital status (thousands) | Africa (ILOSTAT) 🌍 **6,216 observations** · **34 Africa countries** · **1991–2025** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)* ![rows](https://img.shields.io/badge/rows-6,216-blue) ![countries](https://img.shields.io/badge/countries-34-green) ![years](https://img.shields.io/badge/years-1991–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 **6,216 observations** of `Time-related underemployment` data across **34 Africa countries**, spanning **1991–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=EMP_XTRU_SEX_EDU_MTS_NB) - **Publisher:** International Labour Organization (ILO) - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** Time-related underemployment ## Methodology Data pulled directly from the ILOSTAT REST API at `https://rplumber.ilo.org/data/indicator?id=EMP_XTRU_SEX_EDU_MTS_NB` 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 34 Africa countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `ZAF` | 859 | 2008 | 2024 | | `RWA` | 448 | 2014 | 2025 | | `ZMB` | 388 | 2017 | 2024 | | `GHA` | 366 | 1991 | 2024 | | `UGA` | 328 | 2010 | 2021 | | `MUS` | 308 | 2012 | 2019 | | `AGO` | 304 | 2019 | 2025 | | `ZWE` | 289 | 2011 | 2024 | | `BWA` | 284 | 2006 | 2024 | | `SEN` | 227 | 2011 | 2024 | | `MLI` | 208 | 2018 | 2024 | | `EGY` | 197 | 2016 | 2024 | | `NGA` | 190 | 2019 | 2024 | | `SYC` | 177 | 2015 | 2024 | | `ETH` | 162 | 2005 | 2021 | | ... | _19 more countries_ | | | ## Indicators (sample) - `EMP_XTRU_SEX_EDU_MTS_NB` — Time-related underemployment by sex, education and marital status (thousands) ## 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 | `EMP_XTRU_SEX_EDU_MTS_NB` | | `indicator.label` | `string` | Indicator name in English | `Time-related underemployment by sex, …` | | `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.) | `EDU_AGGREGATE_TOTAL` | | `classif1.label` | `string` | — | `Education (Aggregate levels): Total` | | `classif2` | `string` | Second classification variable where applicable | `MTS_AGGREGATE_TOTAL` | | `classif2.label` | `string` | — | `Marital status (Aggregate): Total` | | `time` | `int64` | Observation year | `2025` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `117.022` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_classif` | `string` | — | `C3:2620` | | `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-emp-xtru-sex-edu-mts-nb-time-related-underemployment-by-sex-education-and") 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"] == "EMP_XTRU_SEX_EDU_MTS_NB"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EMP_XTRU_SEX_EDU_MTS_NB") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EMP_XTRU_SEX_EDU_MTS_NB"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{africa_ilo_emp_xtru_sex_edu_mts_nb_time_related_underemployment_by_sex_education_and_2025, title = {Time-related underemployment by sex, education and marital status (thousands) | Africa (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EMP_XTRU_SEX_EDU_MTS_NB}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-ilo-emp-xtru-sex-edu-mts-nb-time-related-underemployment-by-sex-education-and}} } ``` ## 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=EMP_XTRU_SEX_EDU_MTS_NB_

This dataset is titled Time-related underemployment by sex, education and marital status (thousands) | Africa (ILOSTAT) and contains 6,216 observations across 34 African countries, spanning from 1991 to 2025. The core indicator is Time-related underemployment, sourced from the International Labour Organization (ILO) ILOSTAT database, retrieved via API and filtered to African ISO3 country codes. It is structured in tabular format with columns such as country code (ref_area), sex (sex), education level (classif1), marital status (classif2), year (time), and observed value (obs_value), supporting disaggregation by sex, education, marital status, and other dimensions. The data is annual frequency and provides statistics on underemployment, suitable for tabular classification, regression, and time-series forecasting tasks. For data quality, ILOSTAT harmonizes raw survey microdata using ICLS definitions, with source and observation status flags included. Usage examples include loading the dataset, filtering by country, time-series analysis, and pivoting to matrices. The dataset is released under the CC-BY-4.0 license and repackaged by Electric Sheep Africa as part of a unified, ML-ready data layer for Africa on HuggingFace.

提供机构:
electricsheepafrica
搜集汇总
数据集介绍
electricsheepafrica/africa-ilo-emp-xtru-sex-edu-mts-nb-time-related-underemployment-by-sex-education-and 数据集图片
构建方式
该数据集源于国际劳工组织统计数据库(ILOSTAT)关于非洲地区与时间相关的就业不足统计,经Electric Sheep Africa团队进行标准化整理与重新封装。构建过程以ILOSTAT公开的原始统计资料为基础,涵盖34个非洲国家在1991年至2025年间共计6,216条观测记录,以千人单位为计量标准,围绕性别、教育程度与婚姻状况三个维度进行交叉分类。数据以Parquet格式存储,并配套标准化元数据、来源说明与使用指引,形成可直接用于分析的结构化表格数据集。
使用方法
研究者可通过Hugging Face的datasets库直接加载该数据集,获取数据划分与特征结构,并借助to_pandas方法转换为数据框以开展统计分析。使用时应从仓库文件与数据查看器入手,核对变量定义与计量单位,保留缺失值直至确立合理的插补规则。若需与其他Electric Sheep Africa数据集联动,可依据国家、年份与指标字段进行连接,并在分析中引用原始来源与Hugging Face仓库地址,以确保研究过程的可复现性。
背景与挑战
背景概述
伴随国际劳工组织(ILO)对全球劳动力市场监测的持续深化,非洲地区就业不足问题日益受到学界与政策制定者的关注。该数据集由Electric Sheep Africa于2026年基于ILOSTAT中央统计数据库整理发布,涵盖1991至2025年间34个非洲国家、共计6216条与时间相关就业不足的观测记录,并按性别、教育程度与婚姻状况进行细分。其核心研究问题在于刻画非洲劳动力市场中就业不足的多维分布及其时间演变,为劳动经济学与区域发展研究提供可复现的微观证据基础,对推动非洲数据驱动型政策分析具有重要参考价值。
当前挑战
该数据集所应对的领域问题在于传统劳动力统计难以系统呈现就业不足在性别、教育与婚姻维度上的交叉差异,且非洲跨国数据长期存在覆盖不均与口径不一的问题。构建过程中面临的挑战包括:源数据在部分国家与年份存在缺失,需保留缺失值以待合理插补;元数据中country与upstream_publisher等字段标注不完整,地理范围仅能依据来源元数据推定;各变量定义、单位与统计方法需回溯至ILOSTAT原始材料方能确认,否则易导致政策含义的误读。
常用场景
经典使用场景
在劳动经济学与非洲发展研究的交叉领域中,该数据集构成了剖析就业质量与人力资本结构的核心经验素材。其汇聚了1991至2025年间34个非洲国家共计6216条观测记录,围绕时间相关不充分就业指标,按性别、受教育程度与婚姻状况进行精细分层。研究者通常将其用于面板数据建模,考察不同人口子群体在劳动力市场中遭遇工时不足的异质性模式,并借助跨年度比较揭示结构性变迁轨迹,进而为理解非洲劳动力市场分层机制提供可量化的证据基础。
解决学术问题
该数据集有效回应了非洲劳动统计中微观异质性证据长期匮乏的困境,尤其是性别、教育与婚姻身份交互作用下时间相关不充分就业的系统性测量问题。其标准化的国别、年份与人口分组字段,使研究者得以检验教育匹配理论、性别分工假说以及家庭结构对劳动供给的调节效应。通过提供覆盖三十余年的可比时间序列,该数据集为跨国比较研究与政策评估奠定了可靠基础,显著提升了非洲就业议题在实证文献中的可见度与论证力度。
实际应用
在政策实践层面,该数据集为国际组织与非洲各国劳工部门监测体面劳动议程提供了量化支撑。分析人员可依据性别与教育维度的不充分就业分布,识别脆弱就业群体并定向设计技能培训与就业促进项目。结合婚姻状况字段,社会保障机构能够评估家庭照料责任对劳动参与的影响,从而优化育儿支持与灵活就业政策。此外,该数据亦服务于世界银行、国际劳工组织等机构的国别诊断报告,辅助制定包容性增长战略与劳动力市场改革方案。
数据集最近研究
最新研究方向
在非洲劳动力市场深度转型的宏观背景下,该数据集依托国际劳工组织ILOSTAT的权威统计框架,聚焦于34个非洲国家1991至2025年间按性别、教育程度与婚姻状况细分的时间相关不充分就业现象,为发展经济学与劳动计量研究提供了稀缺的跨国别长时序面板证据。当前前沿研究正逐步超越传统失业率指标的局限,转向以工时不足与技能错配为核心的多维就业质量测度,该数据集所涵盖的受教育程度与婚姻状态交叉维度,恰好回应了性别经济学中关于女性劳动参与约束、家庭分工与人力资本回报异质性的热点议题。研究者借助其结构化表格特征,得以在机器学习框架下开展不充分就业的模式识别与因果推断,进而为非洲各国制定包容性就业政策、优化教育资源配置及缩小性别就业差距提供可复现的实证基础。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务