遇见数据集

electricsheepeurope/europe-ilo-une-deap-sex-edu-dsb-rt-unemployment-rate-by-sex-education-and-disability

收藏
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: - 10K<n<100K tags: - tabular - europe - ilostat - unemployment - ilo - labour - employment pretty_name: "Unemployment rate by sex, education and disability status (%) | Europe (ILOSTAT)" --- # Unemployment rate by sex, education and disability status (%) | Europe (ILOSTAT) 🇪🇺 **21,424 observations** · **32 Europe countries** · **2002–2025** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)* ![rows](https://img.shields.io/badge/rows-21,424-blue) ![countries](https://img.shields.io/badge/countries-32-green) ![years](https://img.shields.io/badge/years-2002–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 **21,424 observations** of `Unemployment` data across **32 Europe countries**, spanning **2002–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=UNE_DEAP_SEX_EDU_DSB_RT) - **Publisher:** International Labour Organization (ILO) - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** Unemployment ## Methodology Data pulled directly from the ILOSTAT REST API at `https://rplumber.ilo.org/data/indicator?id=UNE_DEAP_SEX_EDU_DSB_RT` 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 32 Europe countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `GBR` | 1,086 | 2005 | 2025 | | `FRA` | 937 | 2004 | 2024 | | `ESP` | 890 | 2004 | 2024 | | `ITA` | 890 | 2004 | 2024 | | `BEL` | 864 | 2004 | 2024 | | `GRC` | 831 | 2004 | 2024 | | `PRT` | 829 | 2004 | 2024 | | `FIN` | 826 | 2004 | 2024 | | `LUX` | 741 | 2004 | 2024 | | `SWE` | 734 | 2004 | 2024 | | `AUT` | 731 | 2004 | 2024 | | `SVN` | 729 | 2005 | 2024 | | `DNK` | 708 | 2004 | 2024 | | `POL` | 696 | 2005 | 2024 | | `BGR` | 683 | 2007 | 2024 | | ... | _17 more countries_ | | | ## Indicators (sample) - `UNE_DEAP_SEX_EDU_DSB_RT` — Unemployment rate by sex, education and disability status (%) ## 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) | `BB:7401` | | `source.label` | `string` | Source name in English | `HIES - Living Standards Survey` | | `indicator` | `string` | ILOSTAT indicator code | `UNE_DEAP_SEX_EDU_DSB_RT` | | `indicator.label` | `string` | Indicator name in English | `Unemployment rate by sex, education a…` | | `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.) | `EDU_AGGREGATE_TOTAL` | | `classif1.label` | `string` | — | `Education (Aggregate levels): Total` | | `classif2` | `string` | Second classification variable where applicable | `DSB_STATUS_TOTAL` | | `classif2.label` | `string` | — | `Disability status: Total` | | `time` | `int64` | Observation year | `2012` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `22.032` | | `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` | | `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-une-deap-sex-edu-dsb-rt-unemployment-rate-by-sex-education-and-disability") 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"] == "UNE_DEAP_SEX_EDU_DSB_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="UNE_DEAP_SEX_EDU_DSB_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "UNE_DEAP_SEX_EDU_DSB_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{europe_ilo_une_deap_sex_edu_dsb_rt_unemployment_rate_by_sex_education_and_disability_2025, title = {Unemployment rate by sex, education and disability status (%) | Europe (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=UNE_DEAP_SEX_EDU_DSB_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe}, howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-ilo-une-deap-sex-edu-dsb-rt-unemployment-rate-by-sex-education-and-disability}} } ``` ## 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=UNE_DEAP_SEX_EDU_DSB_RT_

This dataset contains 21,424 observations of unemployment rate data across 32 European countries, spanning from 2002 to 2025, disaggregated by sex, education, and disability status. The data is sourced from the International Labour Organizations (ILO) ILOSTAT database, retrieved via its REST API, and filtered to European countries. It includes one primary indicator: unemployment rate by sex, education and disability status (%). The schema features columns such as country codes, year, observed values, data sources, classification variables (e.g., sex, education, disability status), and data quality flags (e.g., reliability status). This dataset is suitable for tabular classification, regression, and time-series forecasting tasks, enabling analysis of labor market trends and disparities in Europe.

提供机构:
electricsheepeurope
搜集汇总
数据集介绍
electricsheepeurope/europe-ilo-une-deap-sex-edu-dsb-rt-unemployment-rate-by-sex-education-and-disability 数据集图片
构建方式
该数据集源自国际劳工组织(ILO)的ILOSTAT统计数据库,作为全球劳动统计领域的权威来源,其数据根基在于各国劳动力调查、家庭收支调查及行政记录。本数据集经由Electric Sheep Europe团队通过ILOSTAT REST API直接抽取,聚焦于欧洲32个国家的失业率指标,严格依据ILO协调的ICLS定义对原始调查微观数据进行标准化处理。在构建过程中,数据仅筛选出欧洲ISO3国家代码,并对同一国家年份存在多来源时采用ILO遴选的'最佳来源',以确保数据的一致性与可比性,最终形成包含21,424条观测记录的整洁表格。
特点
本数据集的核心特色在于其多维度的精细分层结构,围绕'UNE_DEAP_SEX_EDU_DSB_RT'这一核心指标,提供了按性别(男性、女性、总计)、教育程度及残疾状况交叉细分的失业率数值,为深入剖析劳动力市场结构性差异提供了有力工具。数据覆盖从2002年至2025年的跨年度时间序列,横跨32个欧洲国家,其列模式包含了丰富的元数据,如数据来源标签、观测状态标志(如不可靠或临时性)以及系列断裂或方法论变更的详细注释,极大增强了数据使用的透明度和可溯源性。
使用方法
用户可通过HuggingFace的datasets库一键加载,执行'load_dataset'命令即可获得Pandas DataFrame格式的完整数据,便于即时分析。典型应用场景包括按国别筛选特定国家的时间序列数据进行趋势绘制,或使用pivot_table方法将数据重塑为国家×年份的矩阵形式以进行横截面比较。由于数据已按年度频率整理且包含状态标记,研究者在使用时应留意观测状态列中的标志,对标记为'不可靠'或存在系列断裂的观测值予以适当处理,从而保障分析结论的稳健性。
背景与挑战
背景概述
在劳动经济学与社会政策研究领域,失业率的精确测度是评估劳动力市场健康状况与制定包容性就业政策的核心基础。由国际劳工组织(ILO)统计司构建、Electric Sheep Europe于2025年重新整理发布的「europe-ilo-une-deap-sex-edu-dsb-rt-unemployment-rate-by-sex-education-and-disability」数据集,聚焦于欧洲32个国家2002年至2025年间按性别、教育程度和残疾状态细分的失业率数据。该数据集源自ILOSTAT官方数据库,整合了各国劳动力调查等权威来源,经国际劳工统计学家会议(ICLS)标准统一化处理,涵盖21,424条观测记录。其核心研究问题在于揭示多维社会分层因素如何交织影响失业风险,为欧洲区域内的劳动力市场不平等研究、社会政策评估及可持续发展目标(SDG)监测提供了关键数据支撑,尤其在分析残障群体就业困境与教育回报差异方面具有不可替代的学术价值。
当前挑战
该数据集所应对的领域核心挑战在于,传统的失业率宏观指标往往掩盖了性别、教育水平与残疾状态等交叉性结构因素导致的就业不平等。具体而言,残疾群体在劳动力市场中面临系统性歧视与参与障碍,但常规统计数据缺乏对此类脆弱群体的精准分解,导致政策干预缺乏针对性。在数据集构建过程中,挑战则体现为多源异构数据的整合难题:ILOSTAT需从各国不同调查(如家庭收支调查、劳动力调查)中抽取微观数据,并依据统一的ICLS分类标准进行重新编码,其中残疾状态的定义本身在不同国家间存在非标准差异(如note_classif中的C14:6260标识),且教育分类维度(EDU_AGGREGATE_TOTAL)的聚合层次也可能随年份调整,导致序列中断风险(如note_indicator中的I11:264断裂标识)。此外,观测值可靠性标记(如obs_status字段中的'U'代表不可靠)要求研究者对数据质量进行审慎筛选,而年度频率数据无法完全捕捉短期劳动力市场波动,为时序预测建模设置了额外障碍。
常用场景
经典使用场景
该数据集汇集了欧洲32个国家自2002年至2025年间按性别、教育程度与残疾状况划分的失业率数据,共计21,424条观测记录,是劳动经济学与社会政策研究中弥足珍贵的多维度面板资料。研究者可借助该数据集开展跨国比较分析,探讨不同社会人口特征群体在劳动力市场中的脆弱性差异,也可运用时间序列模型追踪失业率的长期演变趋势,抑或构建分类与回归模型,预测特定条件下失业率的变化方向。数据集结构规整,指标清晰,天然适配于表格分类、回归分析及时序预测等经典机器学习任务,为社会学、经济学及公共政策领域的定量研究提供了坚实的数据底座。
解决学术问题
长期以来,劳动经济学研究面临的一个核心瓶颈在于缺乏按性别、教育水平与残疾状况三重维度交叉细分的跨国失业率数据,导致针对弱势群体就业困境的实证分析往往流于宏观而失于微观。本数据集精准回应了这一学术空白,使学者得以系统量化教育程度与残疾状态对就业机会的叠加影响,评估社会保障政策在不同群体间的异质性效果。借助该数据集,研究者能够更严谨地检验歧视理论、人力资本理论以及结构性失业等经典假说在欧洲多元社会背景下的适用性,从而推动劳动市场不平等研究的纵深发展,为制定更具包容性的就业政策提供坚实的实证依据。
衍生相关工作
本数据集的发布催生了一系列围绕社会包容性劳动市场的前沿探索。以其为基础,研究者构建了预测性统计模型,用以估算教育提升对残障群体就业概率的边际效应;也有工作将该数据与欧洲社会调查数据相融合,构建多层次结构方程模型,解析制度环境如何在个体特征与就业结果之间发挥调节作用。在机器学习领域,衍生的经典工作包括利用时序预测模型(如季节性ARIMA或长短期记忆网络)对不同国家及人群亚组的失业趋势进行外推,以及运用因果森林算法识别政策干预在异质性群体中的差异化因果效应。这些研究共同拓展了跨国劳动数据库在社会计算与公共政策实证分析中的应用边界。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务