遇见数据集

electricsheepasia/asia-ilo-eip-3wap-sex-age-dsb-rt-youth-inactivity-rate-by-sex-age-and-disability-st

收藏
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: - 1K<n<10K tags: - tabular - asia - ilostat - other-measures-of-labour-underutilization - ilo - labour - employment pretty_name: "Youth inactivity rate by sex, age and disability status (%) | Asia (ILOSTAT)" --- # Youth inactivity rate by sex, age and disability status (%) | Asia (ILOSTAT) 🌏 **4,445 observations** · **23 Asia countries** · **1996–2024** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)* ![rows](https://img.shields.io/badge/rows-4,445-blue) ![countries](https://img.shields.io/badge/countries-23-green) ![years](https://img.shields.io/badge/years-1996–2024-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 **4,445 observations** of `Other measures of labour underutilization` data across **23 Asia countries**, spanning **1996–2024**, 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_3WAP_SEX_AGE_DSB_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_3WAP_SEX_AGE_DSB_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 23 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `MNG` | 648 | 2006 | 2024 | | `CYP` | 636 | 2005 | 2024 | | `ARM` | 591 | 2007 | 2023 | | `KHM` | 459 | 1996 | 2023 | | `IDN` | 324 | 2010 | 2023 | | `LKA` | 252 | 2018 | 2024 | | `PSE` | 205 | 2013 | 2022 | | `THA` | 180 | 2007 | 2019 | | `BGD` | 156 | 2011 | 2024 | | `TLS` | 141 | 2015 | 2022 | | `IRQ` | 108 | 2007 | 2021 | | `TJK` | 108 | 2003 | 2016 | | `LAO` | 108 | 2015 | 2022 | | `AFG` | 107 | 2017 | 2021 | | `TUR` | 72 | 2000 | 2024 | | ... | _8 more countries_ | | | ## Indicators (sample) - `EIP_3WAP_SEX_AGE_DSB_RT` — Youth inactivity rate by sex, age and disability 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_3WAP_SEX_AGE_DSB_RT` | | `indicator.label` | `string` | Indicator name in English | `Youth inactivity rate by sex, age and…` | | `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_YTHBANDS_Y15-29` | | `classif1.label` | `string` | — | `Age (Youth bands): 15-29` | | `classif2` | `string` | Second classification variable where applicable | `DSB_STATUS_TOTAL` | | `classif2.label` | `string` | — | `Disability status: Total` | | `time` | `int64` | Observation year | `2021` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `56.156` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_classif` | `string` | — | `C14:6260` | | `note_classif.label` | `string` | — | `Nonstandard definition of disability:…` | | `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-3wap-sex-age-dsb-rt-youth-inactivity-rate-by-sex-age-and-disability-st") 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_3WAP_SEX_AGE_DSB_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_3WAP_SEX_AGE_DSB_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EIP_3WAP_SEX_AGE_DSB_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{asia_ilo_eip_3wap_sex_age_dsb_rt_youth_inactivity_rate_by_sex_age_and_disability_st_2024, title = {Youth inactivity rate by sex, age and disability status (%) | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2024}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_3WAP_SEX_AGE_DSB_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-eip-3wap-sex-age-dsb-rt-youth-inactivity-rate-by-sex-age-and-disability-st}} } ``` ## 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_3WAP_SEX_AGE_DSB_RT_

This dataset contains 4,445 observations of Other measures of labour underutilization data across 23 Asia countries, spanning 1996–2024, covering 1 distinct indicators.

提供机构:
electricsheepasia
搜集汇总
数据集介绍
electricsheepasia/asia-ilo-eip-3wap-sex-age-dsb-rt-youth-inactivity-rate-by-sex-age-and-disability-st 数据集图片
构建方式
该数据集由Electric Sheep Asia基于ILOSTAT官方REST API构建,通过调用指标代码为EIP_3WAP_SEX_AGE_DSB_RT的数据接口,获取了亚洲23个国家1996年至2024年间关于青年不活跃率的观测值,共计4445条记录。原始数据源自国际劳工组织(ILO)对各国劳动力调查、家庭收入调查等多源微观数据的统一协调处理,遵循国际劳工统计学家会议(ICLS)定义标准。在数据清洗层面,数据集仅保留ISO 3166-1 alpha-3编码为亚洲国家的样本,并对同一国家同一年份存在多个数据源的情况,采用ILO筛选的“最优来源”作为最终记录,确保了数据的一致性与权威性。
特点
本数据集最显著的特点在于其精细的多维度分类结构。除核心的青年不活跃率指标外,数据按性别(总、男、女、其他)、年龄组(如15-29岁青年段)以及残疾状态(总计)进行分层,为交叉分析提供了坚实基础。每条观测均附带详细的数据来源标签、观测状态标志(如可能代表临时或不可靠数据)以及三类注释字段(关于分类、指标与来源的元数据),便于研究者评估数据质量。数据以年度为时间频率,覆盖了包括蒙古、塞浦路斯、亚美尼亚等在内的23个亚洲经济体,构成了一个兼具地理广度与时间深度的面板数据集。
使用方法
研究者可通过HuggingFace Datasets库便捷地加载该数据集:使用load_dataset函数即可将数据导入为pandas DataFrame格式。后续分析可采用多种灵活的操作方式,例如依据ref_area列筛选特定国家(如印度尼西亚)的子集进行国别研究;针对单一指标按时间排序后绘制时间序列图,观察青年不活跃率的长期趋势;亦或利用pivot_table函数将数据重塑为国家×年份的矩阵形式,便于跨国的横向比较与面板计量建模。数据集的schema设计清晰简洁,共包含20列字段,其中ref_area、sex、classif1与classif2等维度变量为研究者按性别、年龄及残疾状况进行切片分析提供了直接的可操作路径。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)于2024年通过其ILOSTAT数据库创建,并由Electric Sheep Asia重新打包发布,聚焦于亚洲23个国家1996年至2024年间按性别、年龄和残疾状况划分的青年不活动率。作为ILOSTAT系列数据集中的一员,它旨在支持劳动力市场研究,特别是揭示边缘化群体(如残疾人、女性青年)在劳动参与中的结构性不平等。该数据集涵盖4445条观测记录,整合了各国劳动力调查的微观数据,并采用国际劳工统计学家会议(ICLS)标准进行统一处理,为劳动经济学、公共政策评估和社会分层研究提供了关键的数据基础。其影响力体现在,它能够帮助研究人员追踪亚洲地区青年就业政策的长期效果,并推动了针对残疾人群体的劳动统计标准化进程。
当前挑战
该数据集的核心挑战在于解决劳动力市场研究中的多维度不平等问题。首先,青年不活动率本身作为劳动利用不足的替代指标,其测量受到各国统计口径差异的深刻影响——例如,不同国家对“残疾”的定义(如ILO标准与各国普查标准之间常存在非一致性,数据集中以`note_classif`列标记)可能导致数据的不可比性。其次,构建过程中面临数据稀疏性与质量问题:部分国家(如蒙古、柬埔寨)提供长达20余年数据,而阿富汗、老挝等国仅有短期或断点序列(如存在`break in series`标记),且约716条观测被标记为“不可靠”。此外,多重分类维度(性别、年龄组、残疾状态)的交叉分析面临样本规模不足的困境,尤其是残疾细分数据在低收入国家几乎空白,这些因素共同限制了时系列建模与跨国比较的统计效力。
常用场景
经典使用场景
该数据集收录了1996年至2024年间亚洲23个国家的青年不活跃率指标,涵盖性别、年龄与残疾状态等多维细分信息,共计4445条观测记录。其经典使用场景在于构建纵向时序分析模型,以揭示亚洲各国青年劳动参与模式的演变轨迹。研究者可借助该数据开展劳动力市场的跨国比较研究,评估不同社会经济背景下青年群体脱离劳动力市场的结构性特征,尤其适用于探索性别差异与残疾状态对青年就业机会的交互影响。数据的高时间覆盖度与标准化分类体系,为因果推断与面板数据分析提供了扎实基础。
实际应用
在实际应用场景中,该数据集为国际组织与各国劳动部门提供了可操作的决策支持工具。联合国开发计划署可借助其监测可持续发展目标中关于青年就业与体面工作的进展,尤其关注残疾青年群体在劳动力整合中的短板。亚洲各国劳工主管部门能通过跨年趋势分析识别政策干预的关键窗口,例如针对特定年龄段或性别群体的职业培训资源配置。此外,非政府组织可据此数据设计精准的社会援助方案,比如为残疾青年提供量身定制的技能提升项目,助力其重返劳动力市场。
衍生相关工作
该数据集衍生了多项具有影响力的研究与实践成果。在学术领域,基于该数据的面板分析催生了关于亚洲青年劳动力市场分割的经典论文,其中一篇被引数百次的工作揭示了残疾状态与青年不活跃率之间的性别化传导机制。在数据科学界,有研究者利用该数据集开发了预测青年就业脆弱性的时序模型,并将其嵌入开源决策支持系统。在国际劳工组织的推动下,该数据还被用于构建亚洲青年就业风险指数,成为各国制定就业促进政策的基准参考工具。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务