africa-population-zimbabwe
收藏资源简介:
EM-DAT - 国家概况,津巴布韦数据集是一个关于津巴布韦自然灾害相关事件的聚合数据集。该数据集由流行病学研究中心发布,数据来源于人道主义数据交换平台。数据集包含2000年至2026年间津巴布韦的自然灾害事件,每条记录对应特定年份、国家和灾害子类型的组合,并报告了灾害数量、受影响总人数、总死亡人数和经济损失(原始值和调整值)等指标。数据集共包含29行数据,分为23行的训练集和5行的测试集。数据字段包括地理信息(年份、国家、ISO代码、灾害类型和子类型)、人口统计信息(原始和调整后的经济损失)、结果测量(总事件数、受影响人数、死亡人数)以及元数据(数据来源和处理日期)。该数据集适用于表格分类任务,特别是在非洲、人道主义、自然灾害等领域的研究和应用。数据集的局限性包括部分字段缺失值较多(如受影响人数、死亡人数、经济损失等),且数据未经过独立验证。
EM-DAT - Country Profile, Zimbabwe dataset is an aggregated dataset about natural disaster-related events in Zimbabwe. The dataset is published by the Centre for Research on the Epidemiology of Disasters and sourced from the Humanitarian Data Exchange platform. It contains natural disaster events in Zimbabwe from 2000 to 2026, with each record corresponding to a specific year, country, and disaster subtype combination, reporting metrics such as the number of disasters, total affected population, total deaths, and economic losses (original and adjusted values). The dataset consists of 29 rows of data, divided into 23 rows for training and 5 rows for testing. Data fields include geographic information (year, country, ISO code, disaster type and subtype), demographic information (original and adjusted economic losses), outcome measures (total events, affected population, deaths), and metadata (data source and processing date). The dataset is suitable for tabular classification tasks, particularly in research and applications related to Africa, humanitarian efforts, and natural disasters. Limitations of the dataset include many missing values in some fields (e.g., affected population, deaths, economic losses) and the data has not been independently verified.
数据集概述:EM-DAT - Country Profiles, Zimbabwe
该数据集由灾害流行病学研究中心(Centre for Research on the Epidemiology of Disasters)发布,源数据来自人道主义数据交换(HDX),并经 Electric Sheep Africa 整理为机器学习就绪的 Parquet 格式。数据集聚焦于津巴布韦(ZWE)自然相关灾害的汇总统计信息。
数据集基本信息
- 领域: 人口统计学与人口
- 观察单位: 国家层面汇总
- 语言: 英语
- 许可协议:
hdx-other - 数据行数: 总计 29 行(训练集 23 行,测试集 5 行)
- 列数: 15 列(7 个数值型,8 个类别型,0 个日期时间型)
- 地理范围: Zimbabwe (ZWE)
- 数据最后更新: 2026-04-24
数据集内容与特征
每一行数据对应一个年份、国家、灾害子类型的组合,包含以下指标:
- 灾害事件次数 (
total_events) - 受影响总人口 (
total_affected) - 死亡总人数 (
total_deaths) - 经济损失(原始值和调整值) (
total_damage_usd_original,total_damage_usd_adjusted)
变量说明
- 地理相关:
year(年份,范围 2000.0–2026.0)、country(国家,Zimbabwe)、iso(国家代码,ZWE) - 人口统计:
total_damage_usd_original(原始经济损失,范围 1,200,000.0–500,000,000.0)、total_damage_usd_adjusted(调整后经济损失,范围 1,815,483.0–673,276,182.0) - 事件/结果:
total_events(事件次数,范围 1.0–2.0)、total_affected(受影响人数,范围 300.0–7,600,000.0)、total_deaths(死亡人数,范围 2.0–628.0) - 标识符/元数据:
esa_source(数据来源,HDX)、esa_processed(处理日期,2026-04-29) - 其他:
disaster_group(灾害分组,Natural)、disaster_subroup(灾害子组,Hydrological / Meteorological / Climatological)、disaster_type(灾害类型,Flood / Storm / Drought)、disaster_subtype(灾害子类型,Riverine flood / Drought / Tropical cyclone)、cpi(消费者价格指数,范围 54.8952–100.0)
数据缺失情况(注意:部分列缺失率较高)
total_damage_usd_original缺失率 72.4%total_damage_usd_adjusted缺失率 72.4%total_deaths缺失率 44.8%total_affected缺失率 20.7%
快速使用示例
python from datasets import load_dataset
ds = load_dataset("electricsheepafrica/africa-population-zimbabwe") train = ds["train"].to_pandas() test = ds["test"].to_pandas()
print(train.shape) train.head()
数据整理说明
- 原始数据通过 CKAN API 从 HDX 下载并转换为 Parquet 格式
- 列名统一为小写和下划线命名(snake_case)
- 常见缺失值标记统一为 NaN
- 基于解析成功率(>85% 阈值)将 5 列从字符串转换为数值或日期时间类型
- 数据集按固定随机种子(42)以 80/20 比例划分为训练集和测试集
引用信息
bibtex @dataset{hdx_africa_population_zimbabwe, title = {EM-DAT - Country Profiles, Zimbabwe}, author = {Centre for Research on the Epidemiology of Disasters}, year = {2026}, url = {https://data.humdata.org/dataset/emdat-country-profiles-zwe}, note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)} }




