遇见数据集

electricsheepeurope/europe-ilo-une-deap-sex-age-cbr-rt-unemployment-rate-by-sex-age-and-place-of-birth

收藏
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 - international-migrant-stock - ilo - labour - employment pretty_name: "Unemployment rate by sex, age and place of birth (%) | Europe (ILOSTAT)" --- # Unemployment rate by sex, age and place of birth (%) | Europe (ILOSTAT) 🇪🇺 **64,693 observations** · **37 Europe countries** · **1987–2025** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)* ![rows](https://img.shields.io/badge/rows-64,693-blue) ![countries](https://img.shields.io/badge/countries-37-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 **64,693 observations** of `International migrant stock` data across **37 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=UNE_DEAP_SEX_AGE_CBR_RT) - **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=UNE_DEAP_SEX_AGE_CBR_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 37 Europe countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `GRC` | 3,024 | 1987 | 2025 | | `SWE` | 2,781 | 1995 | 2025 | | `NLD` | 2,670 | 1995 | 2025 | | `FRA` | 2,566 | 1995 | 2025 | | `NOR` | 2,552 | 1995 | 2025 | | `GBR` | 2,475 | 1995 | 2025 | | `PRT` | 2,416 | 1995 | 2025 | | `ESP` | 2,390 | 1995 | 2025 | | `DNK` | 2,380 | 1995 | 2025 | | `AUT` | 2,344 | 1995 | 2025 | | `BEL` | 2,325 | 1995 | 2025 | | `IRL` | 2,291 | 1998 | 2025 | | `FIN` | 2,211 | 1995 | 2025 | | `LUX` | 2,005 | 1995 | 2025 | | `EST` | 1,980 | 1998 | 2025 | | ... | _22 more countries_ | | | ## Indicators (sample) - `UNE_DEAP_SEX_AGE_CBR_RT` — Unemployment rate by sex, age and place of birth (%) ## 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 | `UNE_DEAP_SEX_AGE_CBR_RT` | | `indicator.label` | `string` | Indicator name in English | `Unemployment rate by sex, age and pla…` | | `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 | `CBR_BIR_TOTAL` | | `classif2.label` | `string` | — | `Place of birth: Total` | | `time` | `int64` | Observation year | `2024` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `8.431` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_classif` | `string` | — | `—` | | `note_classif.label` | `string` | — | `—` | | `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-age-cbr-rt-unemployment-rate-by-sex-age-and-place-of-birth") 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_AGE_CBR_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="UNE_DEAP_SEX_AGE_CBR_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "UNE_DEAP_SEX_AGE_CBR_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{europe_ilo_une_deap_sex_age_cbr_rt_unemployment_rate_by_sex_age_and_place_of_birth_2025, title = {Unemployment rate by sex, age and place of birth (%) | Europe (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=UNE_DEAP_SEX_AGE_CBR_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe}, howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-ilo-une-deap-sex-age-cbr-rt-unemployment-rate-by-sex-age-and-place-of-birth}} } ``` ## 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_AGE_CBR_RT_

This dataset contains 64,693 observations of international migrant stock data across 37 European countries, spanning from 1987 to 2025, focusing on one distinct indicator: unemployment rate by sex, age, and place of birth (%). The data is sourced from the International Labour Organization (ILO)s ILOSTAT statistics database, extracted via API and filtered to European country codes. The dataset includes columns such as country code, country name, data source, indicator code, sex disaggregation (total, male, female), age classification, place of birth classification, observation year, observed value, and data quality flags. The data is provided at annual frequency and harmonized by ILO based on International Conference of Labour Statisticians (ICLS) definitions. It is suitable for tasks like tabular classification, regression, and time-series forecasting, aiming to offer machine learning-ready labor market data for Europe.

提供机构:
electricsheepeurope
搜集汇总
数据集介绍
electricsheepeurope/europe-ilo-une-deap-sex-age-cbr-rt-unemployment-rate-by-sex-age-and-place-of-birth 数据集图片
构建方式
本数据集源自国际劳工组织(ILO)旗下的ILOSTAT核心统计数据库,通过REST API接口直接抓取原始指标数据,并基于ISO3国家代码筛选出覆盖37个欧洲国家的观测记录。数据提取过程严格遵循国际劳工统计学家会议(ICLS)的定义标准,对不同来源的调查微观数据进行了系统化的清洗与对齐。每一条观测记录都保留了可追溯的数据来源标签,确保了数据来源的透明性与可信度。最终,该数据集以结构化的表格形式呈现,由Electric Sheep Europe团队完成数据的再封装与标准化处理。
特点
数据集共包含64,693条观测记录,时间跨度从1987年至2025年,覆盖了欧洲37个国家,提供了按性别、年龄及出生地维度分解的失业率指标。其核心特色在于多维度的数据颗粒度,性别字段包含总、男、女三种分类,年龄与出生地字段则通过层次化的分类变量实现精细化的数据切片。此外,每条记录均附带有观测状态标志及可能的序列中断说明,便于用户准确评估数据质量。数据的年度频率与多来源一致性选择机制,共同保障了跨国家、跨时间序列分析的可靠性。
使用方法
用户可通过HuggingFace Datasets库的load_dataset()函数一键加载该数据集,并以pandas DataFrame格式进行后续分析。例如,使用基于ref_area字段的条件筛选可快速获取特定国家的子集;对indicator字段进行过滤并按time字段排序,即可构建单一时间序列的折线图。若需跨国家面板分析,可利用pivot_table方法将数据重塑为以年份为行、国家为列的矩阵形式。该数据集尤其适用于劳动力市场的比较研究、失业率的时空演变分析及多变量分解建模等场景。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)于2025年创建,经Electric Sheep Europe重新整理并发布在HuggingFace平台上,聚焦于欧洲37个国家1987至2025年间按性别、年龄及出生地划分的失业率。作为ILOSTAT核心统计数据库的衍生资源,它依托全球领先的劳动力统计数据,旨在通过统一、规范的观测值揭示移民与本地劳动力在市场中的结构性差异。数据集涵盖64,693条记录,汇聚了来自劳动力调查、行政记录等多源数据,为研究欧洲劳动力市场的长期趋势、社会包容性及政策效应提供了可靠的数据基础,对推动劳动经济学、人口社会学及跨国比较研究具有重要影响力。
当前挑战
该数据集主要面临的挑战包括:1)在领域问题层面,它所解决的失业率精准衡量问题,长期受限于不同国家调查方法、定义标准(如ICLS定义)及数据收集频率的差异,导致跨国可比性受损,尤其是在分析移民背景对就业影响时,出生地分类的标准化更显困难;2)在构建过程中,数据整合面临多重困境,如从ILOSTAT REST API抽取时需处理不同来源的质量标记,对'最佳来源'的筛选可能掩盖原始信息,同时分类维度(如性别、年龄组)的缺失与注释字段的差异增加了清洗难度,年度频率的限制也难捕捉月度或季度的就业动态变化。
常用场景
经典使用场景
该数据集涵盖了1987年至2025年间37个欧洲国家按性别、年龄和出生地细分的失业率数据,共计64,693条观测记录,是研究欧洲劳动力市场结构性差异与移民就业融合问题的经典基准资源。研究者常利用该数据进行跨国面板分析,通过固定效应或随机效应模型评估不同人口亚群在失业风险上的长期趋势差异,尤其关注出生地背景(本国出生与外国出生)与失业率之间的关联,为理解移民群体的劳动经济融入提供了可靠的数据支撑。
实际应用
在政策制定与社会治理层面,该数据集为欧洲各国劳动部门与国际组织(如欧盟统计局、国际劳工组织)的劳动力监测提供了可量化、可比较的分析基础。实践中,研究人员可基于不同性别与出生地亚群的失业率波动,识别出就业政策需要优先干预的脆弱群体,例如青年移民女性或高龄外来劳工。此外,该数据常被用于构建宏观劳动力市场的早期预警系统,通过时间序列模型预测经济周期冲击下特定亚群的失业敏感度,从而辅助制定更具包容性的就业促进策略与社会保障方案。
衍生相关工作
基于该数据集,学界已衍生出多项颇具影响力的研究工作。经典成果包括运用分解方法(如Oaxaca-Blinder分解)量化劳动力市场歧视成分的研究,以及利用动态面板模型描绘移民失业率与宏观经济周期之间非线性关系的系列论文。此外,部分工作将此数据集与ILOSTAT其他指标(如工资水平、非正规就业率)进行融合,构建综合性的欧洲劳动力市场韧性指数。在方法论层面,也有学者基于该数据提出了针对结构性缺失值的插补算法,并开发了面向跨国劳动统计基准测试的标准化评估框架,持续丰富着应用计量经济学与劳动统计学的工具箱。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务