遇见数据集

electricsheepeurope/europe-ilo-une-tune-sex-edu-mts-nb-unemployment-by-sex-education-and-marital-status-t

收藏
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: - 100K<n<1M tags: - tabular - europe - ilostat - unemployment - ilo - labour - employment pretty_name: "Unemployment by sex, education and marital status (thousands) | Europe (ILOSTAT)" --- # Unemployment by sex, education and marital status (thousands) | Europe (ILOSTAT) 🇪🇺 **128,328 observations** · **39 Europe countries** · **1987–2025** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)* ![rows](https://img.shields.io/badge/rows-128,328-blue) ![countries](https://img.shields.io/badge/countries-39-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 **128,328 observations** of `Unemployment` data across **39 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_TUNE_SEX_EDU_MTS_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_EDU_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 39 Europe countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `CHE` | 9,017 | 1991 | 2025 | | `GBR` | 8,207 | 1999 | 2025 | | `FRA` | 7,312 | 2005 | 2024 | | `CZE` | 7,211 | 1998 | 2024 | | `AUT` | 6,077 | 1998 | 2025 | | `MKD` | 6,041 | 2005 | 2025 | | `MDA` | 4,857 | 2000 | 2025 | | `ALB` | 4,684 | 2002 | 2024 | | `RUS` | 4,586 | 2010 | 2025 | | `GRC` | 4,266 | 1987 | 2020 | | `BIH` | 4,066 | 2001 | 2020 | | `SRB` | 4,062 | 2007 | 2020 | | `POL` | 3,625 | 1998 | 2025 | | `IRL` | 3,479 | 1999 | 2023 | | `ESP` | 3,103 | 1998 | 2025 | | ... | _24 more countries_ | | | ## Indicators (sample) - `UNE_TUNE_SEX_EDU_MTS_NB` — Unemployment by sex, education 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 | `UNE_TUNE_SEX_EDU_MTS_NB` | | `indicator.label` | `string` | Indicator name in English | `Unemployment by sex, education and ma…` | | `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 | `MTS_AGGREGATE_TOTAL` | | `classif2.label` | `string` | — | `Marital status (Aggregate): Total` | | `time` | `int64` | Observation year | `2024` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `108.247` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_classif` | `string` | — | `C3:996` | | `note_classif.label` | `string` | — | `Nonstandard education level: Including 2` | | `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-edu-mts-nb-unemployment-by-sex-education-and-marital-status-t") 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_EDU_MTS_NB"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="UNE_TUNE_SEX_EDU_MTS_NB") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "UNE_TUNE_SEX_EDU_MTS_NB"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{europe_ilo_une_tune_sex_edu_mts_nb_unemployment_by_sex_education_and_marital_status_t_2025, title = {Unemployment by sex, education and marital status (thousands) | Europe (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=UNE_TUNE_SEX_EDU_MTS_NB}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe}, howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-ilo-une-tune-sex-edu-mts-nb-unemployment-by-sex-education-and-marital-status-t}} } ``` ## 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_EDU_MTS_NB_

This dataset contains European unemployment statistics from the International Labour Organization (ILO) ILOSTAT database, specifically the indicator Unemployment by sex, education and marital status (thousands). It covers 39 European countries from 1987 to 2025, with 128,328 observations. The data is organized in tabular format, including columns for country codes, years, indicator values, and disaggregation dimensions (e.g., sex, education, marital status). The data originates from ILO-harmonized labour force surveys and administrative records, and has been standardized for use in tabular classification, regression, and time-series forecasting tasks. The dataset is repackaged by Electric Sheep Europe and released under the CC-BY-4.0 license.

提供机构:
electricsheepeurope
搜集汇总
数据集介绍
electricsheepeurope/europe-ilo-une-tune-sex-edu-mts-nb-unemployment-by-sex-education-and-marital-status-t 数据集图片
构建方式
该数据集源自国际劳工组织(ILO)的ILOSTAT中央统计数据库,通过调用其REST API直接获取指标代码为‘UNE_TUNE_SEX_EDU_MTS_NB’的原始数据,并依据欧洲ISO3国家代码进行地域筛选。数据来源包括各国劳动力调查、家庭收入调查、企业调查及行政记录,经ILO依据国际劳工统计学家会议(ICLS)定义进行标准化处理,确保跨国可比性。原始调查微数据经整合后,选取ILO认定的‘最佳来源’作为每个国家-年份组合的最终记录,最终由Electric Sheep Europe团队重新打包为机器学习就绪格式,共包含128,328条观测,覆盖39个欧洲国家,时间跨度从1987年至2025年。
特点
该数据集的核心特点在于其精细的多维度分层结构,除了提供失业人数(以千计)这一核心指标外,进一步按性别(总/男/女)、教育程度(聚合级别)和婚姻状况(聚合级别)进行交叉分类,极大丰富了分析粒度。每个观测值附有详尽的数据质量标识,如观测状态(临时、不可靠)、序列中断注释以及非标准教育层级说明,为数据使用的审慎性提供了透明依据。数据集以年度频率呈现,空间覆盖广泛,时间序列长,并采用统一的ISO国家代码和标准化字段命名,便于跨国家、跨时期的纵向比较与面板数据分析。
使用方法
该数据集以HuggingFace Datasets库的形式发布,用户可通过‘load_dataset’函数一行代码加载至Python环境,并轻松转换为pandas DataFrame进行后续操作。典型应用包括按国家过滤以分析单一经济体的失业趋势,针对具体指标按时序排序后进行时间序列可视化。研究者亦可利用pivot_table方法将数据重塑为国家×年份的面板矩阵,便于进行回归分析或面板计量建模。数据集所有字段均附有清晰的英文标签与说明,缺失值处理逻辑明确,可无缝接入现有的机器学习或统计分析工作流。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)统计部门(ILOSTAT)编制,由Electric Sheep Europe于2025年重新打包并发布至HuggingFace平台。作为全球劳动统计的权威来源,ILOSTAT整合了来自各国劳动力调查、家庭收支调查及行政记录等多源数据,旨在提供标准化、可比较的劳动力市场指标。本数据集聚焦欧洲39个国家1987至2025年间按性别、教育程度和婚姻状况划分的失业人数(单位:千人),共计128,328条观测记录。其核心研究问题在于揭示社会经济结构中亚群体失业率的异质性,为劳动力市场分析、政策评估及社会不平等研究提供细粒度数据支撑。该数据集对劳动经济学、人口社会学及机器学习领域中的时间序列预测与分类任务具有重要价值,尤其为跨国家、跨时期的比较研究奠定了坚实基础。
当前挑战
在领域问题层面,失业率研究长期面临多重挑战:首先,如何准确刻画性别、教育水平与婚姻状况三者交叉作用下的失业差异,传统聚合数据往往掩盖了边缘群体的真实状况;其次,不同国家统计口径与调查方法(如ICLS定义差异)导致数据可比性受限,例如非标准教育分类(如note_classif字段所示)与方法论修订(如note_indicator中的序列断裂)均可能引入系统性偏差。在构建过程中,数据集面临来源异构性的严峻考验:ILOSTAT需从200余个经济体的原始微观数据中提取并统一分类标准(如使用ILO选定的“最佳来源”进行冲突消解),同时保留标注字段(如obs_status中的“不可靠”标记)以控制质量。此外,年度频率数据缺失了更高频的季度或月度波动信息,限制了短期危机响应分析的能力。
常用场景
经典使用场景
该数据集广泛应用于劳动经济学与社会分层研究领域,作为探索欧洲劳动力市场结构性变迁的核心数据来源。研究者借助其中按性别、教育程度与婚姻状况细分的失业率指标,能够深入剖析不同社会群体在就业市场中的脆弱性差异。该数据集的经典使用场景包括:构建面板数据模型以估算教育回报率对失业风险的影响,利用时间序列分析捕捉经济周期中特定人群失业率的波动规律,以及通过跨国比较揭示欧洲各国社会保障制度对弱势群体就业保护的异质性效果。其丰富的分层维度为理解劳动力市场分割与阶层固化提供了量化基础。
实际应用
在实际应用层面,该数据集为欧洲各国政策制定者、国际劳工组织及社会研究机构提供了决策支持工具。通过监测特定教育层次或性别群体的失业趋势,政府部门能够动态调整职业培训项目的资源分配,设计差异化的就业援助方案以应对青年或低学历人群的困境。同时,婚姻状况维度的纳入有助于评估家庭结构对劳动力供给的影响,为完善育儿补贴与弹性工作制度提供数据依据。企业人力资源部门亦可借鉴该数据,分析不同人口特征群体的就业稳定性,从而优化人才招聘策略与区域布点规划。
衍生相关工作
该数据集衍生了一系列具有影响力的学术工作。基于其分层失业指标,学者构建了欧洲劳动力市场脆弱性指数,并将之与宏观经济变量结合,发展出预测区域性失业危机的预警模型。相关研究利用该数据验证了求职网络理论中婚姻纽带对信息获取的促进作用,推动了社会资本与就业匹配效率的量化分析。此外,结合该数据与ILOSTAT其他劳动力指标的研究,衍生出关于欧洲非正规就业与性别收入差距的综合分析框架,这些工作进一步被整合进国际机构发布的全球就业报告中,成为政策评估的重要参考。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务