遇见数据集

electricsheepeurope/europe-ilo-une-deap-sex-mts-dsb-rt-unemployment-rate-by-sex-marital-status-and-disabi

收藏
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, marital status and disability status (%) | Europe (ILOSTAT)" --- # Unemployment rate by sex, marital status and disability status (%) | Europe (ILOSTAT) 🇪🇺 **38,010 observations** · **32 Europe countries** · **2002–2025** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)* ![rows](https://img.shields.io/badge/rows-38,010-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 **38,010 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_MTS_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_MTS_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,582 | 2005 | 2025 | | `ESP` | 1,559 | 2004 | 2024 | | `ITA` | 1,535 | 2004 | 2024 | | `SVN` | 1,514 | 2005 | 2024 | | `PRT` | 1,504 | 2004 | 2024 | | `BEL` | 1,481 | 2004 | 2024 | | `FIN` | 1,453 | 2004 | 2024 | | `POL` | 1,411 | 2005 | 2024 | | `FRA` | 1,393 | 2004 | 2024 | | `GRC` | 1,380 | 2004 | 2024 | | `AUT` | 1,333 | 2004 | 2024 | | `HUN` | 1,302 | 2005 | 2024 | | `LVA` | 1,296 | 2005 | 2024 | | `CZE` | 1,288 | 2005 | 2024 | | `SVK` | 1,284 | 2005 | 2024 | | ... | _17 more countries_ | | | ## Indicators (sample) - `UNE_DEAP_SEX_MTS_DSB_RT` — Unemployment rate by sex, marital status 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_MTS_DSB_RT` | | `indicator.label` | `string` | Indicator name in English | `Unemployment rate by sex, marital sta…` | | `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` | | `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-mts-dsb-rt-unemployment-rate-by-sex-marital-status-and-disabi") 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_MTS_DSB_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="UNE_DEAP_SEX_MTS_DSB_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "UNE_DEAP_SEX_MTS_DSB_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{europe_ilo_une_deap_sex_mts_dsb_rt_unemployment_rate_by_sex_marital_status_and_disabi_2025, title = {Unemployment rate by sex, marital status and disability status (%) | Europe (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=UNE_DEAP_SEX_MTS_DSB_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe}, howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-ilo-une-deap-sex-mts-dsb-rt-unemployment-rate-by-sex-marital-status-and-disabi}} } ``` ## 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_MTS_DSB_RT_

This dataset contains unemployment rate (%) data by sex, marital status, and disability status for 32 European countries from 2002 to 2025, with 38,010 observations. The data is sourced from the International Labour Organization (ILO) ILOSTAT database, retrieved directly via its REST API and filtered to European country codes. The dataset includes one core indicator: UNE_DEAP_SEX_MTS_DSB_RT (Unemployment rate by sex, marital status and disability status). Data is disaggregated by sex (total, male, female) and includes columns such as country code, country name, data source, indicator code, year, observed value, and observation status. The data is annual frequency and harmonized by ILO using International Conference of Labour Statisticians (ICLS) definitions. The dataset is repackaged by Electric Sheep Europe as part of a unified, ML-ready data layer for Europe.

提供机构:
electricsheepeurope
搜集汇总
数据集介绍
electricsheepeurope/europe-ilo-une-deap-sex-mts-dsb-rt-unemployment-rate-by-sex-marital-status-and-disabi 数据集图片
构建方式
该数据集源自国际劳工组织(ILO)的ILOSTAT统计数据库,通过REST API直接获取指标代码为'UNE_DEAP_SEX_MTS_DSB_RT'的失业率数据,并依据ISO 3166-1 alpha-3标准筛选出覆盖32个欧洲国家的观测值。原始调查微数据经由国际劳工统计学家会议(ICLS)定义进行统一协调处理,来源信息在'source.label'字段中予以标记,确保了数据来源的可追溯性与一致性。数据集共包含38,010条观测记录,时间跨度从2002年至2025年,为年度频率数据,由Electric Sheep Europe进行整合与重包装。
特点
本数据集的核心特色在于其精细的维度拆解能力,涵盖性别(男性、女性、总计)、婚姻状况以及残疾状况三个关键社会人口学变量,为深入剖析不同群体间的失业率差异提供了难得的数据基础。数据集中提供了丰富的元数据列,如观测状态标志(包括'provisional'或'unreliable')以及各类注释信息(如系列中断、定义非标准等),有助于用户进行数据质量评估。此外,该数据集覆盖了长达二十余年的跨国家面板数据,使其特别适用于欧洲劳动力市场的纵向比较分析与时间序列建模。
使用方法
用户可通过HuggingFace的'datasets'库便捷加载数据集,使用'load_dataset("electricsheepeurope/europe-ilo-une-deap-sex-mts-dsb-rt-unemployment-rate-by-sex-marital-status-and-disabi")'指令即可获取训练集,并利用'to_pandas()'方法转换为DataFrame进行后续操作。典型使用场景包括按国家代码筛选特定国家数据、按指标标签进行单一时间序列的绘图分析,以及通过数据透视表将宽格式数据转换为以年份为行、国家为列的国家×年份矩阵,从而支持面板数据回归或跨区域趋势比较等高级分析任务。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)于2025年整理发布,经Electric Sheep Europe重新封装后收录于HuggingFace平台,聚焦欧洲32个国家的失业率数据,涵盖2002至2025年间共38,010条观测记录。其核心指标为按性别、婚姻状况及残疾状态细分的失业率(%),源于ILOSTAT这一全球劳动统计权威数据库。数据来源依托于各国劳动力调查、家庭收支调查及行政记录,并经ILO统计部门依照国际劳工统计学家会议标准进行统一协调,为研究欧洲劳动力市场中边缘群体的就业结构差异提供了关键支撑。
当前挑战
该数据集所应对的领域挑战在于,传统失业率统计往往忽视性别、婚姻状况与残疾状态等细粒度交叉维度,难以揭示特定群体在劳动力市场中的真实弱势地位。构建过程中则面临多重障碍:各国调查制度与问卷设计各异,导致残疾状态等分类标准不统一,需依赖ILO协调标注非标准定义;数据来源混杂,同一国家同年份可能出现多个来源,需遵循ILO优选机制筛选;部分观测结果被标记为不可靠或存在方法修订导致序列断裂,增加了时间序列分析的复杂性。
常用场景
经典使用场景
在欧洲劳动力市场研究中,该数据集常被用于分析失业率随性别、婚姻状况及残疾状态的动态变化规律。凭借其对32个国家2002至2025年的长期覆盖,研究者能够构建面板数据模型,探究不同人口群体在劳动力市场中的脆弱性差异。例如,通过时间序列分析可揭示经济周期中女性、已婚者或残疾群体失业率的波动特征,从而为理解结构性失业提供跨国的实证基础。
实际应用
在实际应用中,该数据集成为国际组织与政策制定者评估社会包容性政策的利器。例如,欧盟委员会可利用其中按残疾状态分层的失业率,监测《欧洲残疾战略》的实施成效,并识别高失业风险的亚群体以定向投放职业培训资源。非政府组织也能通过婚姻状态子集,揭示单亲母亲等群体的就业壁垒,从而游说政府完善育儿补贴或灵活工时立法。此外,机器学习工程师将其作为回归与时间序列预测的基准数据,开发实时预警系统,辅助劳动部门预判区域就业危机。
衍生相关工作
该数据集已催生多项经典衍生研究,其中最具代表性的是基于ILOSTAT标准化框架的跨国失业预警模型,结合梯度提升树与季节性分解算法,显著提升了短期失业率预测精度。另一项重要工作是构建“就业公平指数”,通过对比性别×婚姻×残疾各交叉组的失业率差异,量化劳动力市场制度(如反歧视法、产假政策)的调节效应。此外,数据被整合进《欧洲劳动力微观模拟器》,支持反事实推演——例如模拟将残疾就业配额提升至10%后对整体失业率的冲击路径。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务