遇见数据集

electricsheepeurope/europe-ilo-ged-xlu2-sex-hht-geo-rt-prime-age-combined-rate-of-time-related-underemplo

收藏
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 - other-measures-of-labour-underutilization - ilo - labour - employment pretty_name: "Prime-age combined rate of time-related underemployment and unemployment (LU2) by sex, hou | Europe (ILOSTAT)" --- # Prime-age combined rate of time-related underemployment and unemployment (LU2) by sex, hou | Europe (ILOSTAT) 🇪🇺 **21,511 observations** · **25 Europe countries** · **2000–2024** · *Repackaged by [Electric Sheep Europe](https://huggingface.co/electricsheepeurope)* ![rows](https://img.shields.io/badge/rows-21,511-blue) ![countries](https://img.shields.io/badge/countries-25-green) ![years](https://img.shields.io/badge/years-2000–2024-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,511 observations** of `Other measures of labour underutilization` data across **25 Europe countries**, spanning **2000–2024**, 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=GED_XLU2_SEX_HHT_GEO_RT) - **Publisher:** International Labour Organization (ILO) - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **Topic:** Other measures of labour underutilization ## Methodology Data pulled directly from the ILOSTAT REST API at `https://rplumber.ilo.org/data/indicator?id=GED_XLU2_SEX_HHT_GEO_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 25 Europe countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `AUT` | 1,295 | 2000 | 2023 | | `BEL` | 1,288 | 2000 | 2023 | | `ESP` | 1,242 | 2000 | 2023 | | `HUN` | 1,241 | 2001 | 2023 | | `LVA` | 1,229 | 2001 | 2023 | | `EST` | 1,199 | 2000 | 2023 | | `LTU` | 1,186 | 2002 | 2023 | | `NLD` | 1,084 | 2000 | 2020 | | `GBR` | 1,080 | 2000 | 2019 | | `DEU` | 1,026 | 2005 | 2023 | | `GRC` | 1,026 | 2006 | 2024 | | `POL` | 1,025 | 2006 | 2024 | | `HRV` | 996 | 2002 | 2023 | | `BGR` | 970 | 2006 | 2023 | | `SVN` | 968 | 2006 | 2023 | | ... | _10 more countries_ | | | ## Indicators (sample) - `GED_XLU2_SEX_HHT_GEO_RT` — Prime-age combined rate of time-related underemployment and unemployment (LU2) by sex, household type and rural / urban areas (%) ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `ref_area` | `string` | ISO 3166-1 alpha-3 country code | `AUT` | | `ref_area.label` | `string` | Country name in English | `Austria` | | `source` | `string` | ILOSTAT source code (e.g. labour force survey) | `BA:103` | | `source.label` | `string` | Source name in English | `LFS - Labour Force Survey` | | `indicator` | `string` | ILOSTAT indicator code | `GED_XLU2_SEX_HHT_GEO_RT` | | `indicator.label` | `string` | Indicator name in English | `Prime-age combined rate of time-relat…` | | `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.) | `HHT_AGGREGATE_TOTAL` | | `classif1.label` | `string` | — | `Household type: Total` | | `classif2` | `string` | Second classification variable where applicable | `GEO_COV_NAT` | | `classif2.label` | `string` | — | `Area type: National` | | `time` | `int64` | Observation year | `2023` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `7.374` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_indicator` | `string` | — | `—` | | `note_indicator.label` | `string` | — | `—` | | `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-ged-xlu2-sex-hht-geo-rt-prime-age-combined-rate-of-time-related-underemplo") 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"] == "GED_XLU2_SEX_HHT_GEO_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="GED_XLU2_SEX_HHT_GEO_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "GED_XLU2_SEX_HHT_GEO_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{europe_ilo_ged_xlu2_sex_hht_geo_rt_prime_age_combined_rate_of_time_related_underemplo_2024, title = {Prime-age combined rate of time-related underemployment and unemployment (LU2) by sex, hou | Europe (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2024}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=GED_XLU2_SEX_HHT_GEO_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Europe}, howpublished = {\url{https://huggingface.co/datasets/electricsheepeurope/europe-ilo-ged-xlu2-sex-hht-geo-rt-prime-age-combined-rate-of-time-related-underemplo}} } ``` ## 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=GED_XLU2_SEX_HHT_GEO_RT_

This dataset contains data on other labor underutilization indicators for 25 European countries from 2000 to 2024, with the core indicator being the combined rate of time-related underemployment and unemployment for the prime working age group (LU2). The data is disaggregated by gender, household type, and urban-rural region. The dataset consists of a total of 21,511 observations, sourced from the ILOSTAT database of the International Labour Organization (ILO), obtained via API and filtered to include only European countries. Its data fields include country code, year, gender category, household type category, regional type category, observed values, and data status flags, among others. This dataset is suitable for labor market analysis, economic research, and machine learning tasks.

提供机构:
electricsheepeurope
搜集汇总
数据集介绍
electricsheepeurope/europe-ilo-ged-xlu2-sex-hht-geo-rt-prime-age-combined-rate-of-time-related-underemplo 数据集图片
构建方式
该数据集源于国际劳工组织(ILO)的ILOSTAT核心劳动统计数据库,通过其REST API直接抽取指标GED_XLU2_SEX_HHT_GEO_RT的原始观测数据,并依据ISO3国家代码筛选出25个欧洲国家的记录。原始数据基于各国劳动力调查、收入调查及行政记录等多元来源,经ILO统计部门采用国际劳工统计学家会议(ICLS)定义进行统一协调与清洗,最终形成包含21,511条观测值的结构化表格。数据集以Parquet格式打包,确保高效存储与读取,并借助Electric Sheep Europe的自动化管线实现语义标注与元数据规范化。
使用方法
用户可通过HuggingFace Datasets库的load_dataset()函数直接加载该数据集,返回的Dataset对象可轻松转换为Pandas DataFrame以供后续分析。典型操作包括按国家代码筛选单一时序数据,按指标分组后绘制时间序列趋势图,或利用pivot_table方法构建国家×年份的观测值矩阵。数据集兼容分类、回归与时间序列预测三类任务,使其成为劳动经济学研究、政策评估及欧洲劳动力市场建模的理想起点。
背景与挑战
背景概述
该数据集由国际劳工组织(ILO)统计司创建,并由Electric Sheep Europe于2024年重新整理发布,聚焦于欧洲25个国家2000至2024年间壮年劳动力时间相关就业不足与失业的综合率(LU2)。作为ILOSTAT数据库的核心指标之一,LU2反映了劳动力利用不足的深层维度,超越了传统失业率所涵盖的范围,成为衡量劳动力市场健康程度的重要补充指标。数据涵盖性别、家庭类型及城乡地理分域,为欧洲劳动力市场结构分析提供了精细化的面板数据基础。该数据集在劳动经济学、社会政策评估及跨国比较研究中具有显著影响力,有助于揭示就业质量与劳动力闲置的现实图景。
当前挑战
该数据集面临的主要挑战在于,时间相关就业不足与失业的综合率涉及多维度交叉分类,导致数据稀疏性与不稳定性并存。不同国家在劳动力调查设计、定义一致性及数据收集频率上存在差异,例如ILO虽采用国际劳工统计学家会议(ICLS)标准进行协调,但国家层面的原始数据来源仍旧参差不齐,部分观察值被标记为不可靠(obs_status='U'),影响了跨时期和跨国比较的准确性。此外,构建过程中的挑战包括从ILOSTAT API抽取欧洲特定子集时需处理复杂的分类变量与缺失值,以及确保年度频率数据在时间序列建模中的连续性与完整性,尤其在涉及多源数据融合时需甄别最佳来源的选择逻辑,这对自动化数据管道提出了较高要求。
常用场景
经典使用场景
该数据集收录了2000年至2024年间欧洲25个国家的21,511条观测记录,聚焦于壮年群体中时间相关不充分就业与失业的综合比率(LU2),并细化了性别、家庭类型及城乡地理维度的分层信息。在时空分析的语境下,研究者可借助这一结构化的面板数据,精准描绘欧洲各国劳动利用不足的动态演化轨迹,尤其适用于评估劳动力市场的结构性失衡与周期性波动。
解决学术问题
在劳动经济学与公共政策研究领域,传统失业率指标常因忽略不充分就业而低估劳动力闲置的真实程度。该数据集通过提供标准化且跨国的LU2综合比率,有效弥补了这一测量缺陷,使得学者能够深入探讨性别差异、家庭结构以及城乡分割如何影响劳动的充分吸纳。其贡献在于为检视欧洲一体化进程中劳动力市场的包容性增长提供了实证基础,推动了关于就业质量与可持续发展目标(SDGs)的量化研究。
实际应用
该数据集的实际应用场景广泛,涵盖宏观经济监测与社会政策评估。政府部门与国际组织(如欧盟委员会、国家统计局)可依据LU2指标感知劳动市场的真实余裕度,从而优化失业保险的覆盖范围与职业培训的资源配置。此外,利用其高颗粒度的分类特征,研究人员能够开发预测模型,对特定亚群(如农村女性或单亲家庭)的就业脆弱性进行预警,助力精准施策以缓解劳动力错配。
数据集最近研究
最新研究方向
当前,基于ILOSTAT数据库的劳动力利用不足复合指标(LU2)数据集成为欧洲劳动力市场研究的重要前沿。该数据集涵盖2000-2024年间25个欧洲国家的21,511条观测记录,按性别、家庭类型及城乡区域进行精细分层,为分析新冠疫情后欧洲“时间相关就业不足与失业复合率”的演变规律提供了高分辨率数据支撑。近期研究热点聚焦于利用该数据集揭示不同社会经济群体在劳动力市场复苏中的结构性差异,尤其是女性、单亲家庭及农村劳动者面临的复合劣势。这一研究方向与欧盟“2030年就业率目标”及“欧洲社会权利支柱”行动计划紧密呼应,通过量化时间相关就业不足与失业的叠加效应,为设计精准的激活政策、缩短工时方案及区域协调干预提供了关键证据。该数据集的ML-Ready格式(Parquet文件)进一步推动了时序预测模型与因果推断方法在劳动经济学中的应用,成为连接宏观ILO统计标准与微观政策评估的桥梁。
以上内容由遇见数据集搜集并总结生成
二维码
社区交流群
二维码
科研交流群
商业服务