遇见数据集

electricsheepeurope/europe-ilo-une-tune-sex-age-dsb-nb-unemployment-by-sex-age-and-disability-status-thou

收藏
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 by sex, age and disability status (thousands) | Europe (ILOSTAT)" --- # Unemployment by sex, age and disability status (thousands) | Europe (ILOSTAT) 🇪🇺 **39,164 observations** · **32 Europe countries** · **2002–2025** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)* ![rows](https://img.shields.io/badge/rows-39,164-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 **39,164 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_TUNE_SEX_AGE_DSB_NB) - **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_TUNE_SEX_AGE_DSB_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 32 Europe countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `GBR` | 1,675 | 2005 | 2025 | | `ESP` | 1,515 | 2004 | 2024 | | `ITA` | 1,512 | 2004 | 2024 | | `GRC` | 1,464 | 2004 | 2024 | | `FRA` | 1,458 | 2004 | 2024 | | `PRT` | 1,455 | 2004 | 2024 | | `FIN` | 1,395 | 2004 | 2024 | | `AUT` | 1,387 | 2004 | 2024 | | `BEL` | 1,387 | 2004 | 2024 | | `POL` | 1,378 | 2005 | 2024 | | `SVN` | 1,365 | 2005 | 2024 | | `IRL` | 1,363 | 2004 | 2024 | | `EST` | 1,344 | 2004 | 2024 | | `LUX` | 1,320 | 2004 | 2024 | | `SWE` | 1,318 | 2004 | 2024 | | ... | _17 more countries_ | | | ## Indicators (sample) - `UNE_TUNE_SEX_AGE_DSB_NB` — Unemployment by sex, age and disability 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) | `BB:7401` | | `source.label` | `string` | Source name in English | `HIES - Living Standards Survey` | | `indicator` | `string` | ILOSTAT indicator code | `UNE_TUNE_SEX_AGE_DSB_NB` | | `indicator.label` | `string` | Indicator name in English | `Unemployment by sex, age and disabili…` | | `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.) | `AGE_YTHADULT_YGE15` | | `classif1.label` | `string` | — | `Age (Youth, adults): 15+` | | `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) | `207.786` | | `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-tune-sex-age-dsb-nb-unemployment-by-sex-age-and-disability-status-thou") 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_TUNE_SEX_AGE_DSB_NB"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="UNE_TUNE_SEX_AGE_DSB_NB") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "UNE_TUNE_SEX_AGE_DSB_NB"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{europe_ilo_une_tune_sex_age_dsb_nb_unemployment_by_sex_age_and_disability_status_thou_2025, title = {Unemployment by sex, age and disability status (thousands) | Europe (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=UNE_TUNE_SEX_AGE_DSB_NB}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe}, howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-ilo-une-tune-sex-age-dsb-nb-unemployment-by-sex-age-and-disability-status-thou}} } ``` ## 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_TUNE_SEX_AGE_DSB_NB_

This dataset contains 39,164 observations of unemployment data across 32 European countries, spanning 2002 to 2025, covering one distinct indicator: Unemployment by sex, age and disability status (thousands). The data is sourced from the ILOSTAT database of the International Labour Organization (ILO), retrieved via API and filtered to European countries, harmonized using International Conference of Labour Statisticians (ICLS) definitions. It includes multidimensional fields such as country, year, indicator value, data source, sex, age group, disability status classification, and data quality notes, suitable for tasks like tabular classification, regression, and time-series forecasting.

提供机构:
electricsheepeurope
搜集汇总
数据集介绍
electricsheepeurope/europe-ilo-une-tune-sex-age-dsb-nb-unemployment-by-sex-age-and-disability-status-thou 数据集图片
构建方式
该数据集源自国际劳工组织(ILO)的ILOSTAT数据库,通过其REST API接口直接抓取指标代码为`UNE_TUNE_SEX_AGE_DSB_NB`的原始数据,并依据欧洲ISO3国家代码进行地理范围筛选。ILOSTAT对各国劳动力调查、家庭收支调查等微观数据依据国际劳工统计学家会议(ICLS)定义进行了标准化处理,确保跨国可比性。随后,Electric Sheep Europe团队对数据进行了重新封装,统一转换为Parquet格式,并附带了标准化的数据集卡片,最终发布于HuggingFace平台,使得研究者能够通过`load_dataset()`函数快速加载使用。
特点
该数据集汇聚了32个欧洲国家从2002年至2025年间的失业统计数据,共计39164条观测值,覆盖了按性别、年龄及残疾状况细分的失业人数(单位:千)。其核心特色在于多维度的分层设计:性别维度包含总人数、男性与女性三类,年龄与残疾状况则通过分类变量灵活呈现。数据集中还标注了数据来源、观测状态标志(如暂时性或不可靠)以及注释信息(如方法修订或定义差异),为用户提供了详尽的元数据追溯能力,从而保障了数据质量与透明性。
使用方法
数据集的使用极为便捷,用户可通过HuggingFace的`datasets`库直接调用`load_dataset()`函数加载数据,并转换为Pandas DataFrame进行后续分析。典型应用包括按国家筛选子集(如德国),对特定指标进行时间序列可视化,或通过数据透视表构建国家×年份的矩阵以观察跨国趋势。由于数据以标准化表格形式呈现,尤其适合用于回归分析、分类任务或时间序列预测等机器学习场景,为欧洲劳动力市场研究提供了开箱即用的高质量基础数据源。
背景与挑战
背景概述
国际劳工组织(ILO)旗下ILOSTAT数据库是全球劳动统计的权威来源,该数据集由Electric Sheep Europe于2025年整理并重新打包发布,聚焦欧洲32个国家2002至2025年间按性别、年龄和残疾状况划分的失业数据(单位:千)。核心研究问题在于揭示劳动力市场中不同人口群体面临的失业异质性,尤其关注残疾人群体的就业脆弱性。该数据集覆盖39,164条观测记录,为劳动经济学、社会政策评估及可持续就业目标(SDG)监测提供了精细化的时间序列数据,推动了残疾包容性就业政策的实证研究。其影响力体现在为跨国产出比较和劳动力市场歧视分析奠定了数据基础。
当前挑战
该数据集所解决的领域问题在于,传统失业统计往往忽略残疾状态这一关键维度,导致政策制定缺乏对弱势群体就业困境的量化依据;数据构建过程中需应对ILOSTAT原始数据因各国调查方法(如劳动力调查、家庭收支调查)不同而导致的定义不统一、时间序列断裂及数据质量标记(如不可靠值)等挑战。此外,跨国数据融合面临分类标准差异(如残疾定义的非标准化),且年度频率限制了季度或月度波动分析,需依赖ILO的‘最佳来源’选择机制来确保连贯性,这对数据清洗和一致性校验提出了极高要求。
常用场景
经典使用场景
在欧洲劳动力市场研究中,该数据集凭借其覆盖32国、跨度逾二十载的失业统计指标,成为分析失业率与性别、年龄及残疾状态之间复杂关联的经典资源。研究人员常将其用于构建面板数据模型,探究不同人口群体在劳动力市场中的脆弱性差异,或评估社会政策对弱势就业群体的干预效果。其标准化的ILOSTAT分类体系和年度观测频率,为跨国比较和时间序列分析提供了坚实的数据基础,是劳动经济学与公共政策领域不可多得的实证支撑。
衍生相关工作
围绕该数据集,学术界已衍生出多项具有代表性的研究工作,涵盖时间序列预测模型的验证、社会包容性指数的构建以及跨国劳动力市场制度的比较分析。其中,部分工作聚焦于利用机器学习方法对失业趋势进行外推,以预警可能的社会经济波动;另一些则将其与ILO其他劳动指标(如非正规就业率)进行数据融合,构建多维度劳动力市场健康评估框架。此外,该数据集也常被用于复现和扩展经典的经济学研究,检验不同理论假设在当代欧洲语境下的适用性,成为劳动实证研究领域具有较高引用率的公共资源。
数据集最近研究
最新研究方向
在全球劳动力市场日益关注包容性发展的背景下,该数据集聚焦于欧洲32国2002至2025年间按性别、年龄与残疾状态划分的失业人数,为洞察弱势群体就业困境提供了高时空分辨率的权威数据支撑。当前前沿研究正依托这些微观分层统计,结合ILOSTAT标准化的方法论,深入解析残疾人群体的结构性失业特征、性别差异的时间演变规律,以及不同年龄段在福利政策冲击下的就业弹性。热点方向包括利用时序预测模型揭示后疫情时期劳动力复苏的不均衡性,并量化“超包容”劳动法改革对残疾失业率的干预效应,从而为欧盟“2030技能议程”与SDG体面工作目标提供实证依据,推动从经济均值分析向多元脆弱群体精准施策的范式跃迁。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务