遇见数据集

electricsheepasia/asia-ilo-eip-dwap-sex-geo-mts-rt-inactivity-rate-by-sex-rural-urban-area-and-marita

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

资源简介:

--- license: cc-by-4.0 language: - en task_categories: - tabular-classification - tabular-regression - time-series-forecasting multilinguality: monolingual size_categories: - 10K<n<100K tags: - tabular - asia - ilostat - other-measures-of-labour-underutilization - ilo - labour - employment pretty_name: "Inactivity rate by sex, rural / urban area and marital status (%) | Asia (ILOSTAT)" --- # Inactivity rate by sex, rural / urban area and marital status (%) | Asia (ILOSTAT) 🌏 **24,363 observations** · **30 Asia countries** · **1970–2025** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)* ![rows](https://img.shields.io/badge/rows-24,363-blue) ![countries](https://img.shields.io/badge/countries-30-green) ![years](https://img.shields.io/badge/years-1970–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 **24,363 observations** of `Other measures of labour underutilization` data across **30 Asia countries**, spanning **1970–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=EIP_DWAP_SEX_GEO_MTS_RT) - **Publisher:** International Labour Organization (ILO) - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** Other measures of labour underutilization ## Methodology Data pulled directly from the ILOSTAT REST API at `https://rplumber.ilo.org/data/indicator?id=EIP_DWAP_SEX_GEO_MTS_RT` and filtered to Asia 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 30 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `IDN` | 2,016 | 1996 | 2023 | | `CYP` | 1,579 | 1999 | 2020 | | `PHL` | 1,556 | 2007 | 2023 | | `ARM` | 1,529 | 2001 | 2023 | | `VNM` | 1,366 | 2010 | 2024 | | `KHM` | 1,317 | 1996 | 2023 | | `MNG` | 1,298 | 2009 | 2024 | | `THA` | 1,250 | 2007 | 2024 | | `PAK` | 1,241 | 2005 | 2025 | | `IND` | 1,154 | 1994 | 2025 | | `KOR` | 1,152 | 2000 | 2025 | | `TUR` | 1,044 | 2000 | 2013 | | `LKA` | 1,006 | 2010 | 2024 | | `PSE` | 836 | 2000 | 2022 | | `GEO` | 832 | 2009 | 2020 | | ... | _15 more countries_ | | | ## Indicators (sample) - `EIP_DWAP_SEX_GEO_MTS_RT` — Inactivity rate by sex, rural / urban area and marital status (%) ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `ref_area` | `string` | ISO 3166-1 alpha-3 country code | `AFG` | | `ref_area.label` | `string` | Country name in English | `Afghanistan` | | `source` | `string` | ILOSTAT source code (e.g. labour force survey) | `BA:15715` | | `source.label` | `string` | Source name in English | `LFS - Labour Force Survey` | | `indicator` | `string` | ILOSTAT indicator code | `EIP_DWAP_SEX_GEO_MTS_RT` | | `indicator.label` | `string` | Indicator name in English | `Inactivity rate by sex, rural / urban…` | | `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.) | `GEO_COV_NAT` | | `classif1.label` | `string` | — | `Area type: National` | | `classif2` | `string` | Second classification variable where applicable | `MTS_AGGREGATE_TOTAL` | | `classif2.label` | `string` | — | `Marital status (Aggregate): Total` | | `time` | `int64` | Observation year | `2021` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `50.27` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_indicator` | `string` | — | `I11:264` | | `note_indicator.label` | `string` | — | `Break in series: Methodology revised` | | `note_source` | `string` | — | `R1:3513_S3:8` | | `note_source.label` | `string` | — | `Repository: ILO-STATISTICS - Micro da…` | ## Disaggregation dimensions The following columns provide disaggregation dimensions: - **`sex`** (4 unique values): `SEX_T`, `SEX_M`, `SEX_F`, `SEX_O` ## 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("electricsheepasia/asia-ilo-eip-dwap-sex-geo-mts-rt-inactivity-rate-by-sex-rural-urban-area-and-marita") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python indonesia = df[df["ref_area"] == "IDN"] ``` ### Time-series for a single indicator ```python sample = (df[df["indicator"] == "EIP_DWAP_SEX_GEO_MTS_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_DWAP_SEX_GEO_MTS_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EIP_DWAP_SEX_GEO_MTS_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{asia_ilo_eip_dwap_sex_geo_mts_rt_inactivity_rate_by_sex_rural_urban_area_and_marita_2025, title = {Inactivity rate by sex, rural / urban area and marital status (%) | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_DWAP_SEX_GEO_MTS_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-eip-dwap-sex-geo-mts-rt-inactivity-rate-by-sex-rural-urban-area-and-marita}} } ``` ## 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 Asia repackaging. ## About Electric Sheep Electric Sheep Asia is part of the Electric Sheep mission: a unified, ML-ready data layer for Asia 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/electricsheepasia](https://huggingface.co/electricsheepasia) --- _Provenance: ingested 2026-05-27 via the Electric Sheep pipeline. Source URL: https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_DWAP_SEX_GEO_MTS_RT_

This dataset contains 24,363 observations of Other measures of labour underutilization data across 30 Asia countries, spanning 1970–2025, covering 1 distinct indicators. The indicator is Inactivity rate by sex, rural / urban area and marital status (%). Data is sourced from the ILOSTAT database of the International Labour Organization (ILO), pulled via API and filtered to Asia ISO3 country codes, harmonized using ICLS definitions. It includes multiple dimensions such as country, sex, area type, marital status, year, and observed values, suitable for tabular classification, regression, and time-series forecasting tasks.

提供机构:
electricsheepasia
搜集汇总
数据集介绍
electricsheepasia/asia-ilo-eip-dwap-sex-geo-mts-rt-inactivity-rate-by-sex-rural-urban-area-and-marita 数据集图片
构建方式
该数据集源自国际劳工组织(ILO)的ILOSTAT中央统计数据库,由Electric Sheep Asia团队从ILOSTAT REST API直接拉取数据并重新封装而成。数据筛选聚焦于亚洲地区,仅保留ISO3国家代码所对应的30个亚洲国家的观测记录。ILOSTAT基于国际劳工统计学家会议(ICLS)的定义对原始调查微观数据进行统一协调,数据来源涵盖劳动力调查、家庭收入调查及行政记录等多样化渠道,并在source.label列中标注以保障可追溯性。数据集涵盖1970年至2025年间共24,363条观测,所有指标均源自单一核心指标——按性别、城乡区域及婚姻状况划分的经济不活跃率(%)。
特点
该数据集最显著的特点在于其精细化的多维列联结构,同时按性别(sex)、地理区域(classif1)和婚姻状况(classif2)三个维度对经济不活跃率进行拆解,提供了4种性别分类与多种区域及婚姻状态的组合,极大地丰富了微观劳动力分析的层次。数据以年度频率发布,广泛覆盖阿富汗、印度、韩国等30个亚洲国家,其中印度尼西亚的观测记录最多,达2,016条。此外,数据集还包含观测状态标志(obs_status)和数据来源注释(note_indicator),用于标识数据质量,如“不可靠”或“方法学中断”等标记,为研究者提供了严谨的质量控制信息。
使用方法
通过HuggingFace的datasets库,可便捷地加载该数据集:使用load_dataset()函数即可将数据读入内存,并转换为Pandas DataFrame进行分析。研究者可按国家筛选,例如以ref_area字段获取印度尼西亚的数据子集;也可针对单一指标进行时间序列分析,利用time和obs_value字段绘制趋势图。对于跨国家比较,该数据集支持透视图表操作,以time为行索引、ref_area为列构建国家×年份矩阵,便于进行面板数据分析或纵向比较。此外,数据集中的所有分类变量均已通过标签列(如sex.label)进行了自然语言标注,简化了可视化中的图例生成与解释性分析工作。
背景与挑战
背景概述
在全球劳动力市场研究领域,劳动参与不足的测度一直是经济学与社会学的核心议题,尤其在不同性别、城乡地域及婚姻状况间的差异揭示了深层结构性不平等。国际劳工组织(ILO)自20世纪中叶起便致力于构建标准化的劳动统计体系,其ILOSTAT数据库作为权威数据源,为跨国比较提供了坚实基础。在此背景下,Asia-ILO-EIP-DWAP-SEX-GEO-MTS-RT-Inactivity-Rate数据集应运而生,由Electric Sheep Asia于2025年重新整理并发布于HuggingFace平台,聚焦亚洲30个国家1970年至2025年间的不活动率指标。该数据集通过性别、城乡区域及婚姻状况的交叉分解,旨在解析亚洲劳动力市场中隐性失业与劳动参与障碍的复杂格局,为政策制定者与研究人员提供精细化的实证依据,显著推动了区域劳动经济学与可持续发展目标(SDG)相关研究的发展。
当前挑战
该数据集面临的核心领域挑战在于,劳动不活动率作为衡量劳动力市场边缘群体的关键指标,传统上易被宏观失业率所掩盖,而性别、城乡与婚姻状况的多维交叉解构则要求数据具备高度精确的粒度和跨国可比性。在构建过程中,主要挑战包括:原始ILOSTAT数据来源多样,涵盖家庭调查和行政记录,需通过国际劳工统计学家会议(ICLS)定义进行严格协调,以保证时间序列的一致性;数据存在年份缺失、观测状态标记为不可靠(如obs_status为‘U’)以及因方法论修订导致的序列断裂(如note_indicator标示),需谨慎处理;此外,部分国家样本量有限(如仅数百条记录),限制了深层群体分析的统计稳健性,而多源数据合并时的选择偏差(如采用ILO‘最佳来源’)亦可能引入系统性误差。
常用场景
经典使用场景
该数据集汇聚了国际劳工组织(ILO)官方发布的亚洲30个国家1970至2025年间按性别、城乡地域及婚姻状况分层的不活跃率数据,共计24,363条观测记录。其核心应用在于探索不同人口群体在劳动参与中的结构性差异,经典使用场景涵盖基于时间序列的区域经济对比分析、多元线性回归中的社会经济因素解构,以及分类与回归任务中的人口特征预测建模。数据经过ILO标准化处理,来源可追溯,特别适合用于研究劳动市场边缘化群体、性别不平等及城市化对就业参与的长期影响。通过内置的分组过滤与透视功能,研究人员能够轻松构建跨国家、跨年代的观察矩阵,从而揭示亚洲特有劳动力变迁规律。
衍生相关工作
该数据集的出现直接催生了一系列衍生学术与工程工作。在方法论层面,多篇论文借鉴其分层结构开发了针对劳动市场隐性退出现象的混合效应模型与贝叶斯推断框架。在工程实践中,基于该数据集的预训练时间序列预测模型(如LSTM、Transformer)被广泛用于区域劳动力需求模拟,相关代码仓库已发展为可持续扩展的模型基准测试平台。与此同时,国际劳工组织官方以该数据为核心发布了劳工不充分测量指标体系的技术修订指南,促进了统计标准在亚太地区的统一。少数研究者还将该数据与卫星夜间灯光数据、移动位置数据等另类替代数据融合,尝试建立多维劳动参与度代理变量,开拓了政府统计数据与社会大数据融合的新研究方向。
数据集最近研究
最新研究方向
该数据集聚焦于亚洲地区1970至2025年间按性别、城乡区域及婚姻状况划分的劳动参与不足率,为研究人口结构变迁与劳动力市场分化提供了高分辨率时空视角。近年来,随着亚洲各国老龄化加速、女性劳动参与率波动以及城乡二元结构转型,基于ILOSTAT统一口径的跨国面板数据成为解析劳动力隐性闲置与社会保障缺口的关键工具。数据集涵盖30国逾2.4万观测值,支持通过性別、地域与婚姻状况的交叉维度识别弱势群体——如已婚女性的城乡非活动率差异——从而为政策制定者设计针对性技能培训、灵活就业激励及普惠托育方案提供实证依据。结合热点事件如新冠疫情后女性“退出劳动”现象与亚洲新兴经济体城镇化浪潮,该数据有助于量化制度性就业屏障与结构性失业动态,推动全球南方劳动经济学从总量描述向多维异质性分析跃迁。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务