遇见数据集

electricsheepeurope/europe-ilo-eip-neet-sex-mts-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 - europe - ilostat - other-measures-of-labour-underutilization - ilo - labour - employment pretty_name: "Youth not in employment, education or training (NEET) by sex and marital status (thousands | Europe (ILOSTAT)" --- # Youth not in employment, education or training (NEET) by sex and marital status (thousands | Europe (ILOSTAT) 🇪🇺 **9,101 observations** · **38 Europe countries** · **1987–2025** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)* ![rows](https://img.shields.io/badge/rows-9,101-blue) ![countries](https://img.shields.io/badge/countries-38-green) ![years](https://img.shields.io/badge/years-1987–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 **9,101 observations** of `Other measures of labour underutilization` data across **38 Europe countries**, spanning **1987–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_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_NEET_SEX_MTS_NB` and filtered to Europe 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 38 Europe countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `CHE` | 586 | 1991 | 2025 | | `MDA` | 585 | 2000 | 2025 | | `POL` | 520 | 2000 | 2025 | | `FRA` | 456 | 2005 | 2024 | | `CZE` | 449 | 2001 | 2023 | | `MKD` | 447 | 2006 | 2025 | | `GBR` | 442 | 2004 | 2025 | | `ALB` | 400 | 2002 | 2024 | | `AUT` | 397 | 2005 | 2025 | | `BIH` | 367 | 2001 | 2020 | | `ESP` | 332 | 2000 | 2025 | | `GRC` | 306 | 1987 | 2020 | | `SRB` | 278 | 2007 | 2020 | | `PRT` | 262 | 1998 | 2020 | | `IRL` | 204 | 2004 | 2023 | | ... | _23 more countries_ | | | ## Indicators (sample) - `EIP_NEET_SEX_MTS_NB` — Youth not in employment, education or training (NEET) by sex and marital status (thousands) ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `ref_area` | `string` | ISO 3166-1 alpha-3 country code | `ALB` | | `ref_area.label` | `string` | Country name in English | `Albania` | | `source` | `string` | ILOSTAT source code (e.g. labour force survey) | `BA:480` | | `source.label` | `string` | Source name in English | `LFS - Labour Force Survey` | | `indicator` | `string` | ILOSTAT indicator code | `EIP_NEET_SEX_MTS_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.) | `MTS_AGGREGATE_TOTAL` | | `classif1.label` | `string` | — | `Marital status (Aggregate): Total` | | `time` | `int64` | Observation year | `2024` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `59.496` | | `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("electricsheepeurope/europe-ilo-eip-neet-sex-mts-nb-youth-not-in-employment-education-or-training-neet") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python germany = df[df["ref_area"] == "DEU"] ``` ### Time-series for a single indicator ```python sample = (df[df["indicator"] == "EIP_NEET_SEX_MTS_NB"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_NEET_SEX_MTS_NB") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EIP_NEET_SEX_MTS_NB"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{europe_ilo_eip_neet_sex_mts_nb_youth_not_in_employment_education_or_training_neet_2025, title = {Youth not in employment, education or training (NEET) by sex and marital status (thousands | Europe (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_NEET_SEX_MTS_NB}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe}, howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-ilo-eip-neet-sex-mts-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 Europe repackaging. ## About Electric Sheep Electric Sheep Europe is part of the Electric Sheep mission: a unified, ML-ready data layer for Europe 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/electricsheepeurope](https://huggingface.co/electricsheepeurope) --- _Provenance: ingested 2026-05-27 via the Electric Sheep pipeline. Source URL: https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_NEET_SEX_MTS_NB_

This dataset contains Youth not in employment, education or training (NEET) by sex and marital status (thousands) data from the International Labour Organization (ILO) ILOSTAT database, focusing on Europe. It includes 9,101 observations across 38 European countries, spanning the years 1987 to 2025, with a single indicator EIP_NEET_SEX_MTS_NB that measures NEET youth in thousands. The data is disaggregated by sex (total, male, female) and marital status (total), provided at annual frequency, and includes columns such as country code, source, indicator, observation value, status flags, and notes. Repackaged by Electric Sheep Europe, it serves as a unified, ML-ready data layer for Europe, suitable for tasks like tabular classification, regression, and time-series forecasting.

提供机构:
electricsheepeurope
搜集汇总
数据集介绍
electricsheepeurope/europe-ilo-eip-neet-sex-mts-nb-youth-not-in-employment-education-or-training-neet 数据集图片
构建方式
该数据集源自国际劳工组织(ILO)的ILOSTAT统计数据库,聚焦于欧洲地区未就业、未受教育或未接受培训(NEET)青年的状况,并按性别与婚姻状况进行细分。数据通过ILOSTAT REST API直接拉取,选取了38个欧洲国家的ISO3代码进行筛选,共包含9101条观测记录,时间跨度从1987年至2025年。ILOSTAT依据国际劳动统计学家会议(ICLS)的定义对原始调查微观数据进行统一协调,并在source.label列中标记数据来源以确保可追溯性。数据集由Electric Sheep Europe进行重新打包,以Parquet格式发布,旨在为机器学习任务提供标准化、可直接使用的数据层。
特点
该数据集的核心特点在于其精细化的维度划分与高质量的数据整合。它包含了按性别(总、男、女)和婚姻状况(包括总计与具体类别)双重分层的数据,使得研究者能够深入分析不同社会群体的NEET状况差异。数据来源清晰可溯,每一条记录均附带来源编码及标签,且采用ILO选定的‘最佳来源’以避免同一国家-年份的多源冲突。此外,数据集注明了观测状态(如不可靠、暂定)与指标注释(如方法修订导致序列中断),为用户提供了必要的数据质量语境。其时间序列长达近四十年,覆盖欧洲主要国家,为纵向比较与趋势分析奠定了坚实基础。
使用方法
用户可通过HuggingFace Datasets库便捷加载该数据集,仅需一行代码`load_dataset("electricsheepeurope/europe-ilo-eip-neet-sex-mts-nb-youth-not-in-employment-education-or-training-neet")`即可获取训练集并转换为Pandas DataFrame。针对特定国家的分析,可通过过滤`ref_area`列实现,例如筛选德国(DEU)的数据。对于时间序列分析,可按指示器(如`EIP_NEET_SEX_MTS_NB`)筛选并依据`time`列排序,进而绘制观测值随时间变化的曲线。若需构建国家-年份矩阵,可利用pivot_table方法将数据透视,以`time`为行、`ref_area`为列、`obs_value`为值,便于进行跨国家比较或作为回归模型的输入特征。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)通过其ILOSTAT数据库发布,并由Electric Sheep Europe于2025年重新整理封装于HuggingFace平台。核心研究问题聚焦于欧洲地区青年未就业、未受教育或未接受培训(NEET)的状况,特别关注性别与婚姻状态对NEET群体规模的影响。数据集涵盖38个欧洲国家,时间跨度从1987年至2025年,包含9,101条观测记录。作为ILO旗舰统计数据库的核心组成部分,该数据集为劳动力市场不充分就业的测度提供了标准化、可比较的跨国时序数据,对劳动经济学、社会政策分析及可持续发展目标(SDG)监测具有重要支撑作用,尤其助力于理解青年脆弱就业形态的结构性特征。
当前挑战
该数据集所应对的领域挑战在于,青年NEET指标作为衡量劳动力市场不充分就业的关键代理变量,其跨国比较面临数据来源异质性、指标定义差异及统计方法不统一等障碍。ILOSTAT通过国际劳工统计学家会议(ICLS)标准进行数据协调,但不同国家劳动力调查的样本设计、编码规则与质量控制水平参差不齐,导致观测值中存在可靠性标记(如‘不可靠’标志)。构建过程中,挑战还包括将多源数据整合为统一时间序列时需处理季节性调整、断点修正(如方法修订导致的序列断裂)以及缺失值插补等复杂问题,同时需确保性别与婚姻状态等细分维度的非空值在正确子集中呈现。
常用场景
经典使用场景
该数据集聚焦于欧洲青年未就业、未接受教育或培训(NEET)的宏观统计指标,涵盖1987年至2025年间38个欧洲国家的观测数据,并按性别和婚姻状况进行细分。经典使用场景包括利用时间序列分析方法追踪不同国家NEET比率的长期演变趋势,或构建面板数据模型探究经济周期、劳动力市场政策对青年群体就业状态的影响。研究者可借助此数据集评估欧洲各国在减少青年失业率方面的政策成效,并对比不同社会人口特征(如性别、婚姻状况)下的差异。此外,该数据也常用于训练回归模型以预测未来NEET比率的变化,为决策者提供前瞻性参考。
实际应用
实际应用层面,该数据集为国际劳工组织(ILO)、欧盟统计局及相关政府机构提供了循证决策的基础。政策制定者可利用该数据识别NEET高发国家与脆弱群体,从而优化职业教育培训资源的地理配置或设计针对性的就业激励计划。在社会评估领域,非政府组织和智库可基于此数据监测联合国可持续发展目标中关于体面工作的进展。此外,数据科学的从业者可将其整合进多源劳动力市场分析平台,为区域经济规划、教育体系改革效果评估提供量化支撑。数据集开放的CC-BY-4.0许可也降低了跨机构合作的研究门槛。
衍生相关工作
围绕该数据的衍生工作已催生了多项具有影响力的研究。经济学者利用此面板数据构建了欧洲青年失业弹性系数模型,揭示了GDP增长与NEET比率之间的非线性关系,并出版了关于欧洲南部国家代际失业传递的专著。社会科学领域,研究者结合ILOSTAT其他指标(如非正式就业率)开发了复合边缘化指数,拓展了社会剥夺理论的操作化定义。在机器学习方向,该数据集被用于训练时序预测模型(如Prophet、LSTM),产生了多篇探讨NEET短期波动可预测性的实证论文。此外,数据集的清晰标记与标准化格式也使其成为教学范例,被多所高校用于劳动经济学与数据科学课程。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务