遇见数据集

electricsheepasia/asia-ilo-eip-neet-sex-nb-youth-not-in-employment-education-or-training-neet

收藏
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 not in employment, education or training (NEET) by sex (thousands) | Asia (ILOSTAT)" --- # Youth not in employment, education or training (NEET) by sex (thousands) | Asia (ILOSTAT) 🌏 **1,342 observations** · **40 Asia countries** · **1970–2025** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)* ![rows](https://img.shields.io/badge/rows-1,342-blue) ![countries](https://img.shields.io/badge/countries-40-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 **1,342 observations** of `Other measures of labour underutilization` data across **40 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_NEET_SEX_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_NEET_SEX_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 40 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `IDN` | 84 | 1996 | 2023 | | `CYP` | 78 | 1999 | 2024 | | `TUR` | 75 | 2000 | 2024 | | `PSE` | 72 | 2000 | 2025 | | `KHM` | 66 | 1996 | 2023 | | `IRN` | 60 | 2005 | 2024 | | `MNG` | 57 | 2003 | 2024 | | `ARM` | 54 | 2001 | 2023 | | `THA` | 54 | 2000 | 2024 | | `PHL` | 54 | 2006 | 2023 | | `VNM` | 51 | 2007 | 2024 | | `MYS` | 51 | 1970 | 2022 | | `PAK` | 51 | 2005 | 2025 | | `KGZ` | 45 | 2009 | 2023 | | `LKA` | 45 | 2009 | 2024 | | ... | _25 more countries_ | | | ## Indicators (sample) - `EIP_NEET_SEX_NB` — Youth not in employment, education or training (NEET) by sex (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_NEET_SEX_NB` | | `indicator.label` | `string` | Indicator name in English | `Youth not in employment, education or…` | | `sex` | `string` | Disaggregation by sex (SEX_T = total, SEX_M = male, SEX_F = female) | `SEX_T` | | `sex.label` | `string` | — | `Total` | | `time` | `int64` | Observation year | `2021` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `2476.073` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `B` | | `obs_status.label` | `string` | — | `Break in series` | | `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-neet-sex-nb-youth-not-in-employment-education-or-training-neet") 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_NEET_SEX_NB"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_NEET_SEX_NB") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EIP_NEET_SEX_NB"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{asia_ilo_eip_neet_sex_nb_youth_not_in_employment_education_or_training_neet_2025, title = {Youth not in employment, education or training (NEET) by sex (thousands) | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_NEET_SEX_NB}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-eip-neet-sex-nb-youth-not-in-employment-education-or-training-neet}} } ``` ## 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_NEET_SEX_NB_

This dataset contains Other measures of labour underutilization data from the International Labour Organization (ILO) ILOSTAT database, specifically focusing on the indicator Youth not in employment, education or training (NEET) by sex (thousands). It includes 1,342 observations across 40 Asia countries spanning 1970–2025, covering 1 distinct indicator (EIP_NEET_SEX_NB). Data is pulled from the ILOSTAT REST API and harmonized by the ILO using International Conference of Labour Statisticians (ICLS) definitions, with fields such as country codes, year, sex disaggregation (total, male, female, other), observed values, data sources, and quality flags.

提供机构:
electricsheepasia
搜集汇总
数据集介绍
electricsheepasia/asia-ilo-eip-neet-sex-nb-youth-not-in-employment-education-or-training-neet 数据集图片
构建方式
该数据集基于国际劳工组织(ILO)的ILOSTAT REST API直接获取,原始数据源自各国劳动力调查、住户收入调查等官方统计,并经ILO依据国际劳工统计学家会议定义进行统一协调处理。数据提取时聚焦于亚洲地区,依据ISO 3166-1 alpha-3国家代码进行筛选,最终构建为一个包含1342条观测记录、覆盖40个亚洲国家、时间跨度从1970年至2025年的标准化表格数据集。
特点
数据集专注于亚洲青年未参与就业、教育或培训(NEET)的规模,以千人计数,并提供按性别(总、男、女、其他)的细分维度。每条记录均附带详尽的数据溯源信息,包括数据来源、观测状态标志及注释,确保高度可追溯性。数据频率为年度,且优先采用ILO认定的最佳来源,保留了时间序列的连续性与一致性,适用于面板数据分析与跨国家比较研究。
使用方法
用户可通过Hugging Face Datasets库的`load_dataset()`函数一键加载数据,将其转换为Pandas DataFrame进行分析。支持按国家代码(如`ref_area`)筛选特定国家的时间序列,也可按指标代码(如`EIP_NEET_SEX_NB`)聚焦特定变量。进一步地,利用数据透视功能可将数据重塑为国家×年份的矩阵形式,便于进行跨国家面板回归、趋势可视化或机器学习建模任务。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)于2025年整理发布,并由Electric Sheep Asia重新打包至HuggingFace平台,聚焦于亚洲40个国家1970至2025年间青年未参与就业、教育或培训(NEET)的性别分项数据。NEET指标作为衡量劳动力利用不足的关键维度,深刻反映了青年群体在社会转型中的结构性困境,尤其在亚洲区域经济快速发展与劳动市场分化并存的背景下,该数据为理解青年失业、教育断层与社会排斥之间的复杂关联提供了量化基础。通过整合ILOSTAT数据库中的标准化调查与行政记录,该数据集为劳动经济学、发展研究与公共政策制定者提供了跨时空可比的高频观测工具。
当前挑战
该数据集面临的核心挑战在于数据质量与跨国家可比性的平衡。首先,ILOSTAT虽采用国际劳工统计学家会议的统一定义,但各国原始数据来源(如劳动力调查、行政记录)的采集方法、样本框与时间频率存在差异,可能导致同一指标在不同国家间出现结构性偏差。其次,数据集标注了“序列中断”“方法修订”等观测状态标识,表明部分国家因调查方法调整或数据源变更产生时间序列的不连续性,对长期趋势分析构成干扰。此外,NEET指标本身无法区分主动退出劳动市场与隐性失业的差异,且性别维度子类在部分国家仍存在数据缺失,这些因素共同制约了模型预测与因果推断的稳健性。
常用场景
经典使用场景
该数据集涵盖了1970年至2025年间亚洲40个国家的青少年未就业、未受教育或未接受培训(NEET)人数的观测数据,共计1,342条记录。在社会科学与劳动经济学研究中,它被广泛用于时间序列分析与面板数据建模,以探究不同性别和地区间NEET指标的长期演变趋势。研究者可通过该数据集构建回归模型或机器学习分类器,识别影响青少年劳动参与率的关键社会经济因素,为政策制定提供数据支撑。
解决学术问题
该数据集有效解决了亚洲地区青少年劳动力市场边缘化问题的量化研究瓶颈,提供了跨国家、跨性别的高质量标准化面板数据。它填补了区域间可比较的NEET统计空白,使学者能够系统分析经济增长、教育普及与就业政策对青少年群体劳动参与的影响。其意义在于推动了对青年失业隐性形态的学术关注,助力实证研究检验人力资源开发理论与劳动力市场分割假说,进而为国际劳工组织及各国制定包容性就业策略提供扎实的数据基础。
衍生相关工作
该数据集衍生出了多项经典研究工作,包括基于机器学习的NEET趋势预测模型、因果推断方法评估最低工资或培训政策对青少年就业的效应,以及多国面板数据的聚类分析以识别相似劳动力市场特征的国家群。这些研究推动了劳动经济学中非正规就业与技能错配议题的深化。同时,数据集也被用于开发可视化仪表板与交互式报告工具,提升了政策传播效率,并催生了关于亚洲青年劳动力转型的专题研讨与跨国合作项目。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务