electricsheepasia/asia-ilo-eip-dwap-sex-age-dsb-rt-inactivity-rate-by-sex-age-and-disability-status
收藏资源简介:
--- 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: "Inactivity rate by sex, age and disability status (%) | Asia (ILOSTAT)" --- # Inactivity rate by sex, age and disability status (%) | Asia (ILOSTAT) 🌏 **10,550 observations** · **20 Asia countries** · **1996–2024** · *Repackaged by [Electric Sheep Asia](https://huggingface.co/electricsheepasia)*      ## TL;DR This dataset contains **10,550 observations** of `Other measures of labour underutilization` data across **20 Asia countries**, spanning **1996–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=EIP_DWAP_SEX_AGE_DSB_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=EIP_DWAP_SEX_AGE_DSB_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 20 Asia countries · top rows shown below, sorted by row count: | Country | Rows | First year | Last year | |---------|-----:|-----------:|----------:| | `CYP` | 1,614 | 2005 | 2024 | | `MNG` | 1,458 | 2006 | 2024 | | `ARM` | 1,377 | 2007 | 2023 | | `KHM` | 1,053 | 1996 | 2023 | | `IDN` | 729 | 2010 | 2023 | | `ISR` | 648 | 2016 | 2023 | | `LKA` | 567 | 2018 | 2024 | | `PSE` | 405 | 2018 | 2022 | | `THA` | 405 | 2007 | 2019 | | `BGD` | 353 | 2011 | 2024 | | `TLS` | 321 | 2015 | 2022 | | `AFG` | 243 | 2017 | 2021 | | `TJK` | 243 | 2003 | 2016 | | `IRQ` | 243 | 2007 | 2021 | | `LAO` | 243 | 2015 | 2022 | | ... | _5 more countries_ | | | ## Indicators (sample) - `EIP_DWAP_SEX_AGE_DSB_RT` — Inactivity rate by sex, age and disability status (%) ## 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 | `EIP_DWAP_SEX_AGE_DSB_RT` | | `indicator.label` | `string` | Indicator name in English | `Inactivity rate by sex, age and disab…` | | `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 | `2021` | | `obs_value` | `float64` | Observed indicator value (unit varies — see indicator definition) | `50.27` | | `obs_status` | `string` | Observation status flag (e.g. provisional, unreliable) | `B` | | `obs_status.label` | `string` | — | `Break in series` | | `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_S3:8` | | `note_source.label` | `string` | — | `Repository: ILO-STATISTICS - Micro da…` | ## Disaggregation dimensions The following columns provide disaggregation dimensions: - **`sex`** (4 unique values): `SEX_T`, `SEX_M`, `SEX_F`, `SEX_O` ## 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-eip-dwap-sex-age-dsb-rt-inactivity-rate-by-sex-age-and-disability-status") 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"] == "EIP_DWAP_SEX_AGE_DSB_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_DWAP_SEX_AGE_DSB_RT") ``` ### Pivot to country × year matrix ```python matrix = (df[df["indicator"] == "EIP_DWAP_SEX_AGE_DSB_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ``` ## Citation ```bibtex @misc{asia_ilo_eip_dwap_sex_age_dsb_rt_inactivity_rate_by_sex_age_and_disability_status_2024, title = {Inactivity rate by sex, age and disability status (%) | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2024}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_DWAP_SEX_AGE_DSB_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {\url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-eip-dwap-sex-age-dsb-rt-inactivity-rate-by-sex-age-and-disability-status}} } ``` ## 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=EIP_DWAP_SEX_AGE_DSB_RT_
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: "按性别、年龄与残疾状况划分的不活动率(%)| 亚洲(ILOSTAT)" --- # 按性别、年龄与残疾状况划分的不活动率(%)| 亚洲(ILOSTAT) 🌏 **10,550条观测** · **20个亚洲国家** · **1996–2024年** · *由[Electric Sheep Asia](https://huggingface.co/electricsheepasia)重新整理*      ## 简短摘要 本数据集包含**10,550条观测**的"劳动力未充分利用的其他衡量指标"数据,覆盖**20个亚洲国家**,时间跨度为**1996–2024年**,仅包含**1个核心指标**。 ## 数据源说明 **国际劳工组织统计数据库(ILOSTAT)**是国际劳工组织(ILO)的核心统计数据库,为全球领先的劳动力统计权威来源。其收录指标涵盖就业、失业、薪酬、工作时长、童工、非正规经济、社会保障、职业伤害以及可持续发展目标(SDG)体面工作目标等领域,数据来源于全国劳动力调查、住户收入调查、企业调查及行政记录,覆盖全球200余个经济体,由国际劳工组织统计司负责数据统一规范处理。 - **数据来源**:[ILOSTAT](https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_DWAP_SEX_AGE_DSB_RT) - **发布机构**:国际劳工组织(ILO) - **授权协议**:[cc-by-4.0](https://creativecommons.org/licenses/by/4.0/) - **研究主题**:劳动力未充分利用的其他衡量指标 ## 数据处理方法 本数据集直接从ILOSTAT的REST API接口`https://rplumber.ilo.org/data/indicator?id=EIP_DWAP_SEX_AGE_DSB_RT`拉取原始数据,并筛选出亚洲地区的ISO 3166-1 alpha-3国家编码对应的样本。ILOSTAT采用国际劳工统计学家会议(ICLS)的定义对原始调查微观数据进行统一规范处理;数据来源信息将在`source.label`字段中标注,以确保可追溯性。 ## 地理覆盖范围 20个亚洲国家 · 以下按观测条数排序的前10个国家示例: | 国家 | 观测条数 | 起始年份 | 结束年份 | |---------|-----:|-----------:|----------:| | `CYP` | 1,614 | 2005 | 2024 | | `MNG` | 1,458 | 2006 | 2024 | | `ARM` | 1,377 | 2007 | 2023 | | `KHM` | 1,053 | 1996 | 2023 | | `IDN` | 729 | 2010 | 2023 | | `ISR` | 648 | 2016 | 2023 | | `LKA` | 567 | 2018 | 2024 | | `PSE` | 405 | 2018 | 2022 | | `THA` | 405 | 2007 | 2019 | | `BGD` | 353 | 2011 | 2024 | | `TLS` | 321 | 2015 | 2022 | | `AFG` | 243 | 2017 | 2021 | | `TJK` | 243 | 2003 | 2016 | | `IRQ` | 243 | 2007 | 2021 | | `LAO` | 243 | 2015 | 2022 | | ... | _其余5个国家_ | | | ## 指标(示例) - `EIP_DWAP_SEX_AGE_DSB_RT` — 按性别、年龄与残疾状况划分的不活动率(%) ## 数据结构 | 字段名 | 数据类型 | 字段说明 | 示例值 | |--------|------|-------------|---------| | `ref_area` | `string` | ISO 3166-1 alpha-3 国家代码 | `AFG` | | `ref_area.label` | `string` | 英文国家名称 | `Afghanistan` | | `source` | `string` | ILOSTAT 来源代码(如劳动力调查) | `BA:15715` | | `source.label` | `string` | 英文来源名称 | `LFS - 劳动力调查` | | `indicator` | `string` | ILOSTAT 指标代码 | `EIP_DWAP_SEX_AGE_DSB_RT` | | `indicator.label` | `string` | 英文指标名称 | `Inactivity rate by sex, age and disab…` | | `sex` | `string` | 性别细分维度(`SEX_T`=总计,`SEX_M`=男性,`SEX_F`=女性) | `SEX_T` | | `sex.label` | `string` | — | `总计` | | `classif1` | `string` | 第一分类变量(年龄、教育程度、身份等) | `AGE_YTHADULT_YGE15` | | `classif1.label` | `string` | — | `年龄(青年、成人):15岁及以上` | | `classif2` | `string` | 可选第二分类变量 | `DSB_STATUS_TOTAL` | | `classif2.label` | `string` | — | `残疾状况:总计` | | `time` | `int64` | 观测年份 | `2021` | | `obs_value` | `float64` | 观测指标值(单位详见指标定义) | `50.27` | | `obs_status` | `string` | 观测状态标记(如临时、不可靠) | `B` | | `obs_status.label` | `string` | — | `序列中断` | | `note_classif` | `string` | — | `C14:6260` | | `note_classif.label` | `string` | — | `残疾状况定义不标准:……` | | `note_indicator` | `string` | — | `I11:264` | | `note_indicator.label` | `string` | — | `序列中断:方法修订` | | `note_source` | `string` | — | `R1:3513_S3:8` | | `note_source.label` | `string` | — | `存储库:ILO统计司 - 微观数据……` | ## 细分维度 以下字段提供数据细分维度: - **`sex`**(共4个唯一值):`SEX_T`、`SEX_M`、`SEX_F`、`SEX_O` ## 数据质量与注意事项 - 数据为年度频率。部分指标同时发布月度或季度序列,本数据集未包含此类数据。 - 当同一国家×年份的同一指标存在多个来源时,将采用国际劳工组织选定的"最优来源"数据。 - 细分字段(`sex`、`classif1`、`classif2`)仅在指标支持对应细分时才会非空。 ## 使用方法 python from datasets import load_dataset ds = load_dataset("electricsheepasia/asia-ilo-eip-dwap-sex-age-dsb-rt-inactivity-rate-by-sex-age-and-disability-status") df = ds["train"].to_pandas() print(df.head()) ### 筛选单个国家数据 python indonesia = df[df["ref_area"] == "IDN"] ### 单个指标的时间序列可视化 python sample = (df[df["indicator"] == "EIP_DWAP_SEX_AGE_DSB_RT"] .sort_values("time")) sample.plot(x="time", y="obs_value", title="EIP_DWAP_SEX_AGE_DSB_RT") ### 转换为国家×年份矩阵 python matrix = (df[df["indicator"] == "EIP_DWAP_SEX_AGE_DSB_RT"] .pivot_table(index="time", columns="ref_area", values="obs_value")) print(matrix.tail()) ## 引用格式 bibtex @misc{asia_ilo_eip_dwap_sex_age_dsb_rt_inactivity_rate_by_sex_age_and_disability_status_2024, title = {Inactivity rate by sex, age and disability status (%) | Asia (ILOSTAT)}, author = {International Labour Organization (ILO)}, year = {2024}, url = {https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_DWAP_SEX_AGE_DSB_RT}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Asia}, howpublished = {url{https://huggingface.co/datasets/electricsheepasia/asia-ilo-eip-dwap-sex-age-dsb-rt-inactivity-rate-by-sex-age-and-disability-status}} } ## 授权协议 本数据集采用[cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)协议发布。原始数据版权归国际劳工组织(ILO)所有。使用本数据集时,请同时引用上述原始数据源及Electric Sheep Asia的重新整理版本。 ## 关于Electric Sheep Asia Electric Sheep Asia是Electric Sheep项目的组成部分,旨在为HuggingFace平台上的亚洲地区数据提供统一、适合机器学习的标准化数据层。我们从权威开源数据源拉取数据,规范数据结构,打包为Parquet格式,并采用统一的数据集卡片发布,使研究人员与开发者可通过`load_dataset()`函数在数秒内开始使用数据。 浏览完整数据集集合:[huggingface.co/electricsheepasia](https://huggingface.co/electricsheepasia) --- _数据溯源:2026年5月27日通过Electric Sheep数据管道摄入。源URL:https://www.ilo.org/shinyapps/bulkexplorer/?id=EIP_DWAP_SEX_AGE_DSB_RT_




