electricsheepasia/asia-ilo-ged-xlu4-sex-hht-chl-rt-prime-age-composite-rate-of-labour-underutilizatio
收藏资源简介:
--- 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 - asia - ilostat - other-measures-of-labour-underutilization - ilo - labour - employment pretty_name: "Prime-age composite rate of labour underutilization (LU4) by sex, household type and prese | Asia (ILOSTAT)" --- # Prime-age composite rate of labour underutilization (LU4) by sex, household type and prese | Asia (ILOSTAT) 🌏 **15,097 observations** · **22 Asia countries** · **2000–2025** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)*      ## TL;DR This dataset contains **15,097 observations** of `Other measures of labour underutilization` data across **22 Asia countries**, spanning **2000–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=GED_XLU4_SEX_HHT_CHL_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_XLU4_SEX_HHT_CHL_RT` and filtered to Asia 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 22 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `CYP` | 1,967 | 2000 | 2020 | | `IRN` | 1,913 | 2008 | 2024 | | `PAK` | 1,431 | 2006 | 2025 | | `KHM` | 1,415 | 2003 | 2023 | | `LKA` | 1,313 | 2010 | 2022 | | `TUR` | 1,175 | 2004 | 2013 | | `VNM` | 1,047 | 2007 | 2024 | | `PHL` | 830 | 2017 | 2023 | | `THA` | 685 | 2016 | 2021 | | `MNG` | 675 | 2011 | 2017 | | `AFG` | 443 | 2014 | 2021 | | `ARM` | 432 | 2014 | 2017 | | `MMR` | 333 | 2018 | 2020 | | `BGD` | 234 | 2013 | 2017 | | `NPL` | 227 | 2008 | 2017 | | ... | _7 more countries_ | | | ## Indicators (sample) - `GED_XLU4_SEX_HHT_CHL_RT` — Prime-age composite rate of labour underutilization (LU4) by sex, household type and presence of children (%) ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `ref_area` | `string` | ISO 3166-1 alpha-3 country code | `AFG` | | `ref_area.label` | `string` | Country name in English | `Afghanistan` | | `source` | `string` | ILOSTAT source code (e.g. labour force survey) | `BA:15715` | | `source.label` | `string` | Source name in English | `LFS - Labour Force Survey` | | `indicator` | `string` | ILOSTAT indicator code | `GED_XLU4_SEX_HHT_CHL_RT` | | `indicator.label` | `string` | Indicator name in English | `Prime-age composite rate of labour un…` | | `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 | `CHL_AGET6_YES` | | `classif2.label` | `string` | — | `Presence of children under age 6: Yes` | | `time` | `int64` | Observation year | `2021` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `24.833` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `U` | | `obs_status.label` | `string` | — | `Unreliable` | | `note_source` | `string` | — | `R1:3513_S3:8` | | `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("electricsheepasia/asia-ilo-ged-xlu4-sex-hht-chl-rt-prime-age-composite-rate-of-labour-underutilizatio") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python indonesia = df[df["ref_area"] == "IDN"] ``` ### Time-series for a single indicator ```python sample = (df[df["indicator"] == "GED_XLU4_SEX_HHT_CHL_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="GED_XLU4_SEX_HHT_CHL_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "GED_XLU4_SEX_HHT_CHL_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{asia_ilo_ged_xlu4_sex_hht_chl_rt_prime_age_composite_rate_of_labour_underutilizatio_2025, title = {Prime-age composite rate of labour underutilization (LU4) by sex, household type and prese | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=GED_XLU4_SEX_HHT_CHL_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-ged-xlu4-sex-hht-chl-rt-prime-age-composite-rate-of-labour-underutilizatio}} } ``` ## 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 Asia repackaging. ## About Electric Sheep Electric Sheep Asia is part of the Electric Sheep mission: a unified, ML-ready data layer for Asia 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/electricsheepasia](https://huggingface.co/electricsheepasia) --- _Provenance: ingested 2026-05-27 via the Electric Sheep pipeline. Source URL: https://www.ilo.org/shinyapps/bulkexplorer/?id=GED_XLU4_SEX_HHT_CHL_RT_
--- license: 知识共享署名4.0(CC-BY-4.0)协议 language: - en task_categories: - 表格分类 - 表格回归 - 时间序列预测 multilinguality: 单语言 size_categories: - 样本量介于1万至10万条之间 tags: - 表格数据 - 亚洲 - ILOSTAT - 其他劳动力闲置衡量指标 - 国际劳工组织(ILO) - 劳动力 - 就业 pretty_name: "按性别、家庭类型及子女状况划分的适龄劳动力综合闲置率(LU4)——亚洲地区(ILOSTAT)" --- # 按性别、家庭类型及子女状况划分的适龄劳动力综合闲置率(LU4)——亚洲地区(ILOSTAT) 🌏 **15097条观测数据** · **22个亚洲国家** · **2000–2025年** · *由[Electric Sheep Asia](https://huggingface.co/electricsheepasia)重新打包*      ## 简短摘要 本数据集包含22个亚洲国家2000至2025年间的15097条「其他劳动力闲置衡量指标」数据,涵盖1个独立指标。 ## 数据源说明 **国际劳工组织统计数据库(ILOSTAT)** 是国际劳工组织(International Labour Organization, ILO)的中央统计数据库,为全球领先的劳动力统计数据来源。其整合了就业、失业、工资、工作时长、童工、非正规经济、社会保障、职业伤害以及可持续发展目标体面工作目标等各类指标,数据来源于全国劳动力调查、家庭收入调查、机构调查及行政记录,覆盖200余个经济体,由国际劳工组织统计司负责数据的标准化协调。 - **来源**:[ILOSTAT](https://www.ilo.org/shinyapps/bulkexplorer/?id=GED_XLU4_SEX_HHT_CHL_RT) - **出版方**:国际劳工组织(ILO) - **许可证**:[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/) - **主题**:其他劳动力闲置衡量指标 ## 数据处理方法 数据直接从ILOSTAT的REST API接口`https://rplumber.ilo.org/data/indicator?id=GED_XLU4_SEX_HHT_CHL_RT`拉取,并筛选出亚洲地区的ISO 3166-1 alpha-3国家代码对应数据。ILOSTAT依据**国际劳工统计会议(International Conference of Labour Statisticians, ICLS)** 的定义对原始调查微观数据进行标准化协调,数据来源信息将在`source.label`列中标记以保证可追溯性。 ## 地理覆盖范围 22个亚洲国家,以下按观测行数排序展示部分国家: | 国家 | 行数 | 起始年份 | 终止年份 | |---------|-----:|-----------:|----------:| | `CYP`(塞浦路斯) | 1967 | 2000 | 2020 | | `IRN`(伊朗伊斯兰共和国) | 1913 | 2008 | 2024 | | `PAK`(巴基斯坦) | 1431 | 2006 | 2025 | | `KHM`(柬埔寨) | 1415 | 2003 | 2023 | | `LKA`(斯里兰卡) | 1313 | 2010 | 2022 | | `TUR`(土耳其) | 1175 | 2004 | 2013 | | `VNM`(越南) | 1047 | 2007 | 2024 | | `PHL`(菲律宾) | 830 | 2017 | 2023 | | `THA`(泰国) | 685 | 2016 | 2021 | | `MNG`(蒙古国) | 675 | 2011 | 2017 | | `AFG`(阿富汗) | 443 | 2014 | 2021 | | `ARM`(亚美尼亚) | 432 | 2014 | 2017 | | `MMR`(缅甸) | 333 | 2018 | 2020 | | `BGD`(孟加拉国) | 234 | 2013 | 2017 | | `NPL`(尼泊尔) | 227 | 2008 | 2017 | | ... | 另有7个国家 | | | ## 指标(示例) - `GED_XLU4_SEX_HHT_CHL_RT` — 按性别、家庭类型及子女状况划分的适龄劳动力综合闲置率(LU4,单位:%) ## 数据结构 | 列名 | 数据类型 | 说明 | 示例 | |--------|------|-------------|---------| | `ref_area` | `string` | ISO 3166-1 alpha-3国家代码 | `AFG` | | `ref_area.label` | `string` | 英文国家名称 | `Afghanistan` | | `source` | `string` | ILOSTAT来源代码(如劳动力调查) | `BA:15715` | | `source.label` | `string` | 英文来源名称 | `LFS - Labour Force Survey` | | `indicator` | `string` | ILOSTAT指标代码 | `GED_XLU4_SEX_HHT_CHL_RT` | | `indicator.label` | `string` | 英文指标名称 | `Prime-age composite rate of labour un…` | | `sex` | `string` | 按性别划分的细分维度(SEX_T=总计,SEX_M=男性,SEX_F=女性) | `SEX_T` | | `sex.label` | `string` | 维度对应中文名称 | `Total` | | `classif1` | `string` | 第一分类变量(年龄、教育程度、就业状况等) | `HHT_AGGREGATE_TOTAL` | | `classif1.label` | `string` | 分类变量中文说明 | `Household type: Total` | | `classif2` | `string` | 第二分类变量(如适用) | `CHL_AGET6_YES` | | `classif2.label` | `string` | 分类变量中文说明 | `Presence of children under age 6: Yes` | | `time` | `int64` | 观测年份 | `2021` | | `obs_value` | `float64` | 观测指标数值(单位详见指标定义) | `24.833` | | `obs_status` | `string` | 观测状态标记(如临时、不可靠) | `U` | | `obs_status.label` | `string` | 状态标记中文说明 | `Unreliable` | | `note_source` | `string` | 来源备注 | `R1:3513_S3:8` | | `note_source.label` | `string` | 备注中文说明 | `Repository: ILO-STATISTICS - Micro da…` | ## 细分维度 以下列提供数据细分维度: - **`sex`**(共3个唯一值):`SEX_T`、`SEX_M`、`SEX_F` ## 数据质量与注意事项 - 数据为年度频率。部分指标同时发布月度或季度序列,但本数据集未包含此类数据。 - 当同一国家×年份的同一指标存在多个来源时,将采用国际劳工组织选定的「最佳来源」数据。 - 仅当指标支持该细分维度时,细分列(`sex`、`classif1`、`classif2`)才不为空值。 ## 使用方法 python from datasets import load_dataset # 加载数据集 ds = load_dataset("electricsheepasia/asia-ilo-ged-xlu4-sex-hht-chl-rt-prime-age-composite-rate-of-labour-underutilizatio") df = ds["train"].to_pandas() print(df.head()) ### 筛选单个国家数据 python # 筛选印度尼西亚数据 indonesia = df[df["ref_area"] == "IDN"] ### 单个指标的时间序列数据 python sample = (df[df["indicator"] == "GED_XLU4_SEX_HHT_CHL_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="GED_XLU4_SEX_HHT_CHL_RT") ### 转换为国家×年份矩阵 python matrix = (df[df["indicator"] == "GED_XLU4_SEX_HHT_CHL_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ## 引用格式 bibtex @misc{asia_ilo_ged_xlu4_sex_hht_chl_rt_prime_age_composite_rate_of_labour_underutilizatio_2025, title = {按性别、家庭类型及子女状况划分的适龄劳动力综合闲置率(LU4)——亚洲地区(ILOSTAT)}, author = {国际劳工组织(ILO)}, year = {2025}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=GED_XLU4_SEX_HHT_CHL_RT}, publisher = {Hugging Face数据集,由Electric Sheep Asia重新打包}, howpublished = {url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-ged-xlu4-sex-hht-chl-rt-prime-age-composite-rate-of-labour-underutilizatio}} } ## 许可证 本数据集基于[CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)协议发布。 原始数据版权归国际劳工组织(ILO)所有。使用本数据集时,请同时引用上述原始来源及Electric Sheep Asia的重新打包版本。 ## 关于Electric Sheep Electric Sheep Asia是Electric Sheep项目的组成部分,旨在构建一个统一的、可直接用于机器学习的亚洲地区数据层,托管于Hugging Face平台。我们从权威开源数据源获取数据,对数据schema进行标准化处理,打包为Parquet格式,并发布格式统一的数据集卡片,以便研究人员和开发者通过`load_dataset()`函数在数秒内开始使用数据。 浏览完整数据集集合:[huggingface.co/electricsheepasia](https://huggingface.co/electricsheepasia) --- _数据溯源:2026年5月27日通过Electric Sheep管道摄入。源URL:https://www.ilo.org/shinyapps/bulkexplorer/?id=GED_XLU4_SEX_HHT_CHL_RT_




