five

electricsheepafrica/africa-sen-requirements-and-funding-data

收藏
Hugging Face2026-04-08 更新2026-04-12 收录
下载链接:
https://hf-mirror.com/datasets/electricsheepafrica/africa-sen-requirements-and-funding-data
下载链接
链接失效反馈
官方服务:
资源简介:
--- annotations_creators: - no-annotation language_creators: - found language: - en license: cc-by-4.0 multilinguality: - monolingual size_categories: - n<1K source_datasets: - original task_categories: - tabular-classification - tabular-regression task_ids: [] tags: - africa - humanitarian - hdx - electric-sheep-africa - covid-19 - funding - humanitarian-financial-tracking-service-fts - sen pretty_name: "Senegal - Requirements and Funding Data" dataset_info: splits: - name: train num_examples: 30 - name: test num_examples: 7 --- # Senegal - Requirements and Funding Data **Publisher:** OCHA Financial Tracking System (FTS) · **Source:** [HDX](https://data.humdata.org/dataset/sen-requirements-and-funding-data) · **License:** `cc-by-igo` · **Updated:** 2026-04-08 --- ## Abstract FTS publishes data on humanitarian funding flows as reported by donors and recipient organizations. It presents all humanitarian funding to a country and funding that is specifically reported or that can be specifically mapped against funding requirements stated in humanitarian response plans. The data comes from OCHA's [Financial Tracking Service](https://fts.unocha.org/) and is encoded as utf-8. Each row in this dataset represents country-level aggregates. Temporal coverage is indicated by the `startdate`, `enddate` column(s). Geographic scope: **SEN**. *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).* --- ## Dataset Characteristics | | | |---|---| | **Domain** | Humanitarian and development data | | **Unit of observation** | Country-level aggregates | | **Rows (total)** | 38 | | **Columns** | 14 (6 numeric, 6 categorical, 2 datetime) | | **Train split** | 30 rows | | **Test split** | 7 rows | | **Geographic scope** | SEN | | **Publisher** | OCHA Financial Tracking System (FTS) | | **HDX last updated** | 2026-04-08 | --- ## Variables **Geographic** — `countrycode` (SEN), `typeid` (range 4.0–2071.0), `typename` (Regional response plan, Humanitarian response plan, Strategic response plan), `year` (range 2001.0–2028.0). **Temporal** — `startdate`, `enddate`. **Outcome / Measurement** — `percentfunded` (range 19.0–90.0). **Identifier / Metadata** — `id` (range 190.0–654.0), `name` (Not specified, Sénégal Plan de Travail Humanitaire 2018, Sénégal Plan de Réponse Humanitaire 2017), `code` (OSEN18, HSEN17, HSEN16), `esa_source` (HDX), `esa_processed` (2026-04-08). **Other** — `requirements` (range 7509199.0–64133225.0), `funding` (range 37698.0–42119797.0). --- ## Quick Start ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-sen-requirements-and-funding-data") train = ds["train"].to_pandas() test = ds["test"].to_pandas() print(train.shape) train.head() ``` --- ## Schema | Column | Type | Null % | Range / Sample Values | |---|---|---|---| | `countrycode` | object | 0.0% | SEN | | `id` | float64 | 73.7% | 190.0 – 654.0 (mean 390.3) | | `name` | object | 0.0% | Not specified, Sénégal Plan de Travail Humanitaire 2018, Sénégal Plan de Réponse Humanitaire 2017 | | `code` | object | 73.7% | OSEN18, HSEN17, HSEN16 | | `typeid` | float64 | 73.7% | 4.0 – 2071.0 (mean 471.1) | | `typename` | object | 73.7% | Regional response plan, Humanitarian response plan, Strategic response plan | | `startdate` | datetime64[ns] | 73.7% | | | `enddate` | datetime64[ns] | 73.7% | | | `year` | int64 | 0.0% | 2001.0 – 2028.0 (mean 2013.8421) | | `requirements` | float64 | 73.7% | 7509199.0 – 64133225.0 (mean 26852242.9) | | `funding` | int64 | 0.0% | 37698.0 – 42119797.0 (mean 8989649.3158) | | `percentfunded` | float64 | 73.7% | 19.0 – 90.0 (mean 46.7) | | `esa_source` | object | 0.0% | HDX | | `esa_processed` | object | 0.0% | 2026-04-08 | --- ## Numeric Summary | Column | Min | Max | Mean | Median | |---|---|---|---|---| | `id` | 190.0 | 654.0 | 390.3 | 384.0 | | `typeid` | 4.0 | 2071.0 | 471.1 | 111.0 | | `year` | 2001.0 | 2028.0 | 2013.8421 | 2014.0 | | `requirements` | 7509199.0 | 64133225.0 | 26852242.9 | 18868629.0 | | `funding` | 37698.0 | 42119797.0 | 8989649.3158 | 5738594.5 | | `percentfunded` | 19.0 | 90.0 | 46.7 | 36.5 | --- ## Curation Raw data was downloaded from HDX via the CKAN API and converted to Parquet. Column names were lowercased and standardised to snake_case. Common missing-value markers (`N/A`, `null`, `none`, `-`, `unknown`, `no data`, `#N/A`) were unified to `NaN`. 2 column(s) were cast from string to numeric or datetime based on parse-success rate (>85% threshold). The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet. --- ## Limitations - Data originates from OCHA Financial Tracking System (FTS) and has not been independently validated by ESA. - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection. - The following columns have >20% missing values and should be treated with caution in modelling: `id`, `code`, `typeid`, `typename`, `startdate`, `enddate`, `requirements`, `percentfunded`. - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/sen-requirements-and-funding-data) for the publisher's own methodology notes and caveats. --- ## Citation ```bibtex @dataset{hdx_africa_sen_requirements_and_funding_data, title = {Senegal - Requirements and Funding Data}, author = {OCHA Financial Tracking System (FTS)}, year = {2026}, url = {https://data.humdata.org/dataset/sen-requirements-and-funding-data}, note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)} } ``` --- *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*
提供机构:
electricsheepafrica
5,000+
优质数据集
54 个
任务类型
进入经典数据集
二维码
社区交流群

面向社区/商业的数据集话题

二维码
科研交流群

面向高校/科研机构的开源数据集话题

数据驱动未来

携手共赢发展

商业合作