遇见数据集

electricsheepasia/asia-ilo-eip-neet-sex-cbr-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: - n<1K tags: - tabular - asia - ilostat - international-migrant-stock - ilo - labour - employment pretty_name: "Youth not in employment, education or training (NEET) by sex and place of birth (thousands | Asia (ILOSTAT)" --- # Youth not in employment, education or training (NEET) by sex and place of birth (thousands | Asia (ILOSTAT) 🌏 **963 observations** · **20 Asia countries** · **1999–2024** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)* ![rows](https://img.shields.io/badge/rows-963-blue) ![countries](https://img.shields.io/badge/countries-20-green) ![years](https://img.shields.io/badge/years-1999–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 **963 observations** of `International migrant stock` data across **20 Asia countries**, spanning **1999–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_NEET_SEX_CBR_NB) - **Publisher:** International Labour Organization (ILO) - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** International migrant stock ## Methodology Data pulled directly from the ILOSTAT REST API at `https://rplumber.ilo.org/data/indicator?id=EIP_NEET_SEX_CBR_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 20 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `CYP` | 231 | 1999 | 2024 | | `TUR` | 144 | 2009 | 2024 | | `ISR` | 117 | 2012 | 2024 | | `BRN` | 80 | 2014 | 2024 | | `ARM` | 76 | 2001 | 2023 | | `TLS` | 40 | 2007 | 2022 | | `KHM` | 37 | 2009 | 2019 | | `IDN` | 36 | 2017 | 2022 | | `MNG` | 30 | 2019 | 2024 | | `MDV` | 30 | 2014 | 2019 | | `IRQ` | 27 | 2007 | 2021 | | `IRN` | 24 | 2006 | 2011 | | `TJK` | 14 | 2007 | 2009 | | `LAO` | 12 | 2017 | 2022 | | `AFG` | 12 | 2014 | 2014 | | ... | _5 more countries_ | | | ## Indicators (sample) - `EIP_NEET_SEX_CBR_NB` — Youth not in employment, education or training (NEET) by sex and place of birth (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) | `BB:6361` | | `source.label` | `string` | Source name in English | `HIES - Households Living Conditions S…` | | `indicator` | `string` | ILOSTAT indicator code | `EIP_NEET_SEX_CBR_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` | | `classif1` | `string` | First classification variable (age, education, status, etc.) | `CBR_BIR_TOTAL` | | `classif1.label` | `string` | — | `Place of birth: Total` | | `time` | `int64` | Observation year | `2014` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `1968.842` | | `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` | | `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("electricsheepasia/asia-ilo-eip-neet-sex-cbr-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_CBR_NB"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_NEET_SEX_CBR_NB") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EIP_NEET_SEX_CBR_NB"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{asia_ilo_eip_neet_sex_cbr_nb_youth_not_in_employment_education_or_training_neet_2024, title = {Youth not in employment, education or training (NEET) by sex and place of birth (thousands | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2024}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_NEET_SEX_CBR_NB}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-eip-neet-sex-cbr-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_CBR_NB_

This dataset contains the Youth not in employment, education or training (NEET) by sex and place of birth (thousands) indicator data from the International Labour Organization (ILO) ILOSTAT database, specifically for Asia. It covers 20 Asian countries from 1999 to 2024, with 963 observations. The core indicator is EIP_NEET_SEX_CBR_NB, which measures NEET youth population (in thousands) disaggregated by sex (total, male, female) and place of birth (total). Data is sourced via the ILOSTAT REST API and normalized for machine learning tasks such as tabular classification, regression, and time-series forecasting. Repackaged by Electric Sheep Asia under CC-BY-4.0 license.

提供机构:
electricsheepasia
搜集汇总
数据集介绍
electricsheepasia/asia-ilo-eip-neet-sex-cbr-nb-youth-not-in-employment-education-or-training-neet 数据集图片
构建方式
该数据集由国际劳工组织(ILO)下属的ILOSTAT统计数据库官方发布,经由Electric Sheep Asia团队重新包装并托管于HuggingFace平台。数据通过ILOSTAT提供的REST API端点直接拉取,原始指标编码为EIP_NEET_SEX_CBR_NB,代表按性别和出生地划分的青年未就业、未受教育或培训(NEET)人数(单位:千人)。获取后,数据被严格筛选至亚洲地区ISO3国家代码范围内,形成最终的地理子集。ILOSTAT本身依据国际劳工统计学家会议(ICLS)定义,对各国劳动力调查、家庭收支调查等原始微观数据进行协调统一,并在source.label字段中标注了各条记录的数据来源,确保数据链条的透明与可追溯性。
特点
该数据集聚焦于亚洲地区,涵盖了1999年至2024年间20个亚洲国家的963条观测记录,时间跨度长达25年,提供了丰富的纵向分析基础。数据表包含17个字段,其中核心观测值obs_value为浮点数,直接反映NEET青年数量;同时通过sex和classif1等维度列实现了按性别和出生地的细致分类,sex列包含总、男、女三种取值,便于多角度分解分析。此外,数据还携带了观测状态标志(obs_status)和系列中断注释(note_indicator.label),为用户评估数据质量和识别方法论变化提供了关键线索。整体而言,该数据集是研究亚洲青年劳动力市场结构性问题的稀缺且权威的时间序列资源。
使用方法
用户可通过HuggingFace datasets库的load_dataset函数便捷加载数据,返回的数据集可直接转换为Pandas DataFrame进行后续处理与分析。典型的使用场景包括:按国家筛选以进行国别研究,例如通过过滤ref_area字段聚焦印度尼西亚;针对单一指标EIP_NEET_SEX_CBR_NB进行时间序列可视化,按年份排序后绘制obs_value随时间的变化趋势;也可通过pivot_table方法将数据重塑为以年份为行、国家为列的矩阵形式,便于跨国比较和面板数据分析。该数据集适用于分类、回归以及时间序列预测等机器学习任务,为量化建模与政策评估提供了结构化、可直接调用的标准化输入。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)于2024年通过其ILOSTAT数据库发布,并由Electric Sheep Asia重新打包为机器学习就绪格式。核心研究问题聚焦于亚洲地区青年(15-24岁)既不就业也不接受教育或培训(NEET)的现状,并按照性别和出生地进行了细致划分。数据集涵盖1999年至2024年间20个亚洲国家的963条观测记录,旨在揭示这一关键劳动力市场指标的时空演变与人口特征差异。作为ILOSTAT这一全球劳动统计权威数据库的重要组成部分,该数据集为研究亚洲青年就业困境、评估教育成果与劳动力市场衔接、以及监测可持续发展目标中体面工作相关指标提供了坚实的数据基础。其对性别和出生地维度的区分,尤其有助于深入分析特定弱势群体的劳动参与障碍,对国际发展经济学、劳动社会学和政策评估领域产生了重要影响。
当前挑战
该数据集所应对的领域挑战在于,青年NEET率是一个复杂且多维的社会经济指标,其统计口径、数据来源和跨国可比性长期存在困难。首要挑战是数据异质性与可比性:各国统计调查频率、抽样方法和问卷设计差异显著,ILO虽采用国际劳动统计学家会议(ICLS)定义进行协调,但“最佳来源”的选择标准仍可能引入方法论的偏差。构建过程中的挑战尤为突出:数据采集需实时从ILOSTAT API拉取并过滤为亚洲国家代码,而原始微数据中的标注体系(如断链序列、修订后方法、来源代码)极其复杂,需要对指标ID、性别分类和出生地分类进行精确的向量化解析与整合。此外,部分国家数据稀疏(如只有12条观测的阿富汗和老挝),严重制约了时间序列分析和可靠预测的统计效力。数据质量标记(如“不可靠”状态)的存在,进一步增加了机器学习建模中数据清洗与缺失值处理的难度。
常用场景
经典使用场景
该数据集聚焦于亚洲20个国家1999年至2024年间青年未充分就业、教育或培训(NEET)状况,按性别和出生地分类统计,共计963条观测记录。经典使用场景包括构建时间序列预测模型,以揭示不同国家青年NEET率的动态演变趋势;同时,它也适用于面板数据分析,用于探究社会经济因素与青年NEET率之间的关联。研究者可基于此数据训练分类或回归模型,识别影响青年就业状态的关键变量,为跨国家比较研究提供量化基础。
实际应用
在实际应用中,该数据集为国际组织及各国政策制定者提供了实证依据,用于设计针对性的青年就业促进方案。例如,通过监测不同性别和移民背景青年的NEET率变化,政府可以精准定位需要干预的群体,优化职业培训与教育资源配置。此外,非政府组织也能利用这些数据评估其项目成效,推动可持续发展目标(SDG)中关于体面劳动和经济增长的具体指标实现。
衍生相关工作
该数据集衍生了一系列标志性研究工作,包括利用动态面板模型分析亚洲青年NEET率与宏观经济波动、教育支出之间的互动关系。部分学者将其与国际移民存量数据结合,探讨移民身份如何影响青年劳动参与决策。此外,基于此数据集开发的机器学习预测框架已被用于预警青年失业高峰,相关成果发表在劳动经济学与国际发展领域的顶级期刊上,进一步巩固了其在亚洲劳动力研究中的基准地位。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务