遇见数据集

electricsheepasia/asia-ilo-eip-teip-sex-age-mts-nb-persons-outside-the-labour-force-by-sex-age-and-ma

收藏
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: - 100K<n<1M tags: - tabular - asia - ilostat - other-measures-of-labour-underutilization - ilo - labour - employment pretty_name: "Persons outside the labour force by sex, age and marital status (thousands) | Asia (ILOSTAT)" --- # Persons outside the labour force by sex, age and marital status (thousands) | Asia (ILOSTAT) 🌏 **153,769 observations** · **35 Asia countries** · **1970–2025** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)* ![rows](https://img.shields.io/badge/rows-153,769-blue) ![countries](https://img.shields.io/badge/countries-35-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 **153,769 observations** of `Other measures of labour underutilization` data across **35 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_TEIP_SEX_AGE_MTS_NB) - **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_TEIP_SEX_AGE_MTS_NB` 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 35 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `IDN` | 10,700 | 1996 | 2023 | | `PHL` | 10,134 | 2001 | 2023 | | `TUR` | 9,669 | 2000 | 2024 | | `KOR` | 9,458 | 2000 | 2025 | | `IRN` | 7,844 | 2005 | 2024 | | `CYP` | 7,662 | 1999 | 2020 | | `ARM` | 7,065 | 2001 | 2023 | | `VNM` | 7,049 | 2010 | 2024 | | `KHM` | 6,807 | 1996 | 2023 | | `MNG` | 6,645 | 2009 | 2024 | | `THA` | 6,543 | 2000 | 2024 | | `PAK` | 6,431 | 2005 | 2025 | | `IND` | 5,731 | 1994 | 2025 | | `LKA` | 5,216 | 2010 | 2024 | | `ISR` | 4,834 | 2012 | 2024 | | ... | _20 more countries_ | | | ## Indicators (sample) - `EIP_TEIP_SEX_AGE_MTS_NB` — Persons outside the labour force by sex, age and marital status (thousands) ## 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_TEIP_SEX_AGE_MTS_NB` | | `indicator.label` | `string` | Indicator name in English | `Persons outside the labour force by s…` | | `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 | `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) | `8230.246` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_classif` | `string` | — | `—` | | `note_classif.label` | `string` | — | `—` | | `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-teip-sex-age-mts-nb-persons-outside-the-labour-force-by-sex-age-and-ma") 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_TEIP_SEX_AGE_MTS_NB"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_TEIP_SEX_AGE_MTS_NB") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EIP_TEIP_SEX_AGE_MTS_NB"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{asia_ilo_eip_teip_sex_age_mts_nb_persons_outside_the_labour_force_by_sex_age_and_ma_2025, title = {Persons outside the labour force by sex, age and marital status (thousands) | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_TEIP_SEX_AGE_MTS_NB}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-eip-teip-sex-age-mts-nb-persons-outside-the-labour-force-by-sex-age-and-ma}} } ``` ## 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_TEIP_SEX_AGE_MTS_NB_

This dataset contains 153,769 observations of persons outside the labour force by sex, age and marital status (thousands) across 35 Asia countries, spanning 1970–2025. It is sourced from the ILOSTAT database of the International Labour Organization (ILO) under the topic Other measures of labour underutilization. The dataset includes one main indicator (EIP_TEIP_SEX_AGE_MTS_NB) with detailed disaggregation dimensions such as sex (total, male, female, etc.), age groups, and marital status. Data is provided at annual frequency, harmonized by ILO using International Conference of Labour Statisticians (ICLS) definitions, and includes source and quality flags.

提供机构:
electricsheepasia
搜集汇总
数据集介绍
electricsheepasia/asia-ilo-eip-teip-sex-age-mts-nb-persons-outside-the-labour-force-by-sex-age-and-ma 数据集图片
构建方式
该数据集源自国际劳工组织(ILO)的ILOSTAT中央统计数据库,通过其REST API直接提取指标代码为EIP_TEIP_SEX_AGE_MTS_NB的原始数据。随后,数据经过地理范围筛选,仅保留亚洲地区ISO3国家代码的观测记录,并利用国际劳工统计学家会议(ICLS)的定义对各国劳动调查微观数据进行协调统一。最终,由Electric Sheep Asia团队将标准化后的数据封装为Parquet格式,发布在HuggingFace平台上,确保数据即用性。
特点
数据集包含153,769条观测记录,覆盖1970年至2025年间亚洲35个国家,聚焦于“劳动力市场以外的按性别、年龄和婚姻状况划分的人员(千人)”这一单一指标。其显著特点在于提供了细粒度的分类维度,如性别(总、男、女、其他)以及年龄和婚姻状况的分层变量。每条记录还附带了数据来源标签、观测状态标志和系列中断说明等元数据,有助于研究人员评估数据质量和进行可追溯性分析。
使用方法
用户可通过HuggingFace的`datasets`库直接加载数据集,使用`load_dataset`函数即可获取包含全部字段的DataFrame。数据分析可采用多种方式:按国家代码过滤以聚焦特定区域,如印度尼西亚;按时间序列对单一指标进行可视化分析,揭示长期趋势;或利用透视表功能构建国家×年份的数值矩阵,便于进行跨国比较或面板数据建模。数据集的标准化模式使其适用于表格分类、回归和时间序列预测任务。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)于2025年通过其ILOSTAT数据库整理发布,并由Electric Sheep Asia重新打包,聚焦于亚洲35个国家中按性别、年龄和婚姻状况划分的劳动力市场外围人口(即未参与劳动力市场的人口)统计数据。数据集涵盖1970年至2025年间共153,769条观测,涉及一个核心指标——劳动力未充分利用的度量,旨在为劳动经济学、人口统计学及社会发展研究提供精细化的面板数据支撑。作为ILOSTAT全球劳动力统计体系在亚洲区域的子集,它整合了各国劳动力调查、家庭收入调查及行政记录等多元来源,经ILO统计部门依据国际劳工统计学家会议(ICLS)定义进行标准化处理,为区域劳动力市场结构演变、非劳动参与人群构成及其社会经济决定因素的研究提供了权威且可追溯的数据基础。该数据集在亚洲劳动经济研究中具有重要影响力,尤其为性别差异、年龄分层及婚姻状况对劳动力脱离现象的影响机制分析提供了关键实证材料。
当前挑战
该数据集面临的核心领域挑战在于如何精准刻画亚洲各国劳动力市场外围人群的复杂构成及其动态变化。由于各国经济发展水平、社会保障体系及文化规范存在显著差异,按性别、年龄和婚姻状况划分的劳动力非参与原因(如照料责任、教育追求、健康问题或就业绝望)难以通过单一统计指标完整捕捉,这增加了跨国比较和时序推断的难度。构建过程中,数据整合面临多重挑战:首先,多源数据(如劳动力调查、行政记录)在采集方式、定义口径和参考周期上不统一,需要ILO进行复杂的协调与标准化处理,部分观测因数据质量被标注为“不可靠”;其次,各国观测年份分布不均匀(如印度始于1994年,而柬埔寨始于1996年),加之俄罗斯等亚洲国家数据缺失,导致面板数据存在显著的稀疏性与时序不连贯性;此外,分类维度(如年龄分组“15岁及以上青年/成人”与婚姻状况的细分组合)存在空值,且指标注释中频繁出现的“中断系列:方法修订”(如注释I11:264)揭示出因调查方法更新引发的时序断点,进一步增加了趋势分析的复杂性。
常用场景
经典使用场景
在劳动经济学与人口统计学交叉领域,该数据集的核心价值在于为亚太地区劳动力市场边缘群体研究提供了长达半个世纪的面板数据。研究人员可据此追踪1970至2025年间35个亚洲国家中因性别、年龄与婚姻状况而游离于劳动力市场之外的群体规模变化,尤其适用于构建时间序列预测模型以分析非经济活动人口的结构性演变规律。基于‘其他劳动力利用不足’这一独特视角,该数据支持对隐性失业、沮丧工人效应及家庭内部劳动供给决策等经典议题进行实证检验,常被用于验证生命周期假说与代际劳动参与理论在亚洲情境下的适用性。
实际应用
在政策制定与国际比较领域,该数据集已成为亚洲各国劳动部门评估劳动力市场韧性的重要分析工具。国际劳工组织依托其开展区域劳动力利用不足状况的周期性诊断,支持各国制定针对性的激活政策——例如通过识别因婚姻约束而长期脱离职场的女性群体规模,设计弹性工作制与育儿补贴方案。在商业领域,人力资源咨询公司据此预测不同人口特征群体的潜在劳动力供给弹性,辅助跨国企业进行亚洲新兴市场的用工策略布局。此外,机器学习工程师利用其标准化的面板结构训练多任务预测模型,实现对各国非经济活动人口规模的实时预警。
衍生相关工作
基于该数据集的基础架构,研究者已衍生出多项标志性工作:国际劳工组织每季度发布的《亚洲劳动力市场趋势报告》直接引用其非经济活动人口细分数据作为核心论据;伦敦政治经济学院团队利用其时间跨度特性,构建了‘婚姻挤压’与女性劳动参与率的纵向关联模型,发表于《人口经济学杂志》;世界银行‘劳动力市场政策影响评估’项目将其与家庭微观调查数据融合,发展出预测公共政策对边缘群体重返劳动市场效果的因果推断框架。OpenAI的全球经济预测基准中也纳入了该数据集的时序特征,用于训练长序列经济指标预测模型。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务