Kossisoroyce commited on
Commit
6ad24e0
·
verified ·
1 Parent(s): a9d35e2

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +145 -30
README.md CHANGED
@@ -1,34 +1,149 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- features:
4
- - name: country
5
- dtype: string
6
- - name: iso3
7
- dtype: string
8
- - name: priority
9
- dtype: string
10
- - name: region
11
- dtype: string
12
- - name: prioritycode
13
- dtype: int64
14
- - name: esa_source
15
- dtype: string
16
- - name: esa_processed
17
- dtype: string
18
  splits:
19
- - name: train
20
- num_bytes: 2547
21
- num_examples: 29
22
- - name: test
23
- num_bytes: 689
24
- num_examples: 8
25
- download_size: 6995
26
- dataset_size: 3236
27
- configs:
28
- - config_name: default
29
- data_files:
30
- - split: train
31
- path: data/train-*
32
- - split: test
33
- path: data/test-*
34
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license: cc-by-4.0
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - n<1K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - tabular-regression
17
+ task_ids: []
18
+ tags:
19
+ - africa
20
+ - humanitarian
21
+ - hdx
22
+ - electric-sheep-africa
23
+ - el-nino-el-nina
24
+ - food-security
25
+ - geodata
26
+ - humanitarian-needs-overview-hno
27
+ - nutrition
28
+ - ago
29
+ - bol
30
+ - bwa
31
+ - khm
32
+ - tcd
33
+ pretty_name: "WFP and FAO Overview of Countries Affected by the El Niño"
34
  dataset_info:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  splits:
36
+ - name: train
37
+ num_examples: 29
38
+ - name: test
39
+ num_examples: 7
 
 
 
 
 
 
 
 
 
 
 
40
  ---
41
+
42
+ # WFP and FAO Overview of Countries Affected by the El Niño
43
+
44
+ **Publisher:** HDX · **Source:** [HDX](https://data.humdata.org/dataset/wfp-and-fao-overview-of-countries-affected-by-the-2015-16-el-nino) · **License:** `cc-by-igo` · **Updated:** 2025-06-12
45
+
46
+ ---
47
+
48
+ ## Abstract
49
+
50
+ This dataset contains a list of the countries affected by the El Niño as at April 21, 2016 as reported jointly by FAO, the Global Food Security Cluster and WFP on 21 April 2016 in the [2015-2016 El Niño: WFP and FAO Overview](http://www.foodsecuritycluster.net/document/2015-2016-el-nino-wfp-and-fao-overview) update. According to the World Bank, El Niño is likely to have a negative impact in more isolated local food markets, and many countries are already facing increased food prices. Food Security Cluster partners have implemented preparedness activities and are responding in countries where the effects of El Niño have materialised, such as Ethiopia, Papua New Guinea, Malawi and throughout Central America. In Southern Africa, many areas have seen the driest October-December
51
+ period since at least 1981, and some 14 million people in the region are already facing hunger, which adds to fears of a spike in the numbers of the food insecure later this year through 2017.
52
+
53
+ Each row in this dataset represents first-level administrative unit observations. Data was last updated on HDX on 2025-06-12. Geographic scope: **AGO, BOL, BWA, KHM, TCD, COL, PRK, DJI, and 29 others**.
54
+
55
+ *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).*
56
+
57
+ ---
58
+
59
+ ## Dataset Characteristics
60
+
61
+ | | |
62
+ |---|---|
63
+ | **Domain** | Food security and nutrition |
64
+ | **Unit of observation** | First-level administrative unit observations |
65
+ | **Rows (total)** | 37 |
66
+ | **Columns** | 7 (1 numeric, 6 categorical, 0 datetime) |
67
+ | **Train split** | 29 rows |
68
+ | **Test split** | 7 rows |
69
+ | **Geographic scope** | AGO, BOL, BWA, KHM, TCD, COL, PRK, DJI, and 29 others |
70
+ | **Publisher** | HDX |
71
+ | **HDX last updated** | 2025-06-12 |
72
+
73
+ ---
74
+
75
+ ## Variables
76
+
77
+ **Geographic** — `country` (Bolivia, Mozambique, Somalia), `iso3` (BOL, MOZ, SOM), `priority` (High Priority, Moderately Affected), `region` (Africa, Latin America and the Caribbean, Asia and the Pacific), `prioritycode` (range 1.0–2.0).
78
+
79
+ **Identifier / Metadata** — `esa_source` (HDX), `esa_processed` (2026-04-05).
80
+
81
+ ---
82
+
83
+ ## Quick Start
84
+
85
+ ```python
86
+ from datasets import load_dataset
87
+
88
+ ds = load_dataset("electricsheepafrica/africa-wfp-and-fao-overview-of-countries-affected-by-the-2015-16-el-nino")
89
+ train = ds["train"].to_pandas()
90
+ test = ds["test"].to_pandas()
91
+
92
+ print(train.shape)
93
+ train.head()
94
+ ```
95
+
96
+ ---
97
+
98
+ ## Schema
99
+
100
+ | Column | Type | Null % | Range / Sample Values |
101
+ |---|---|---|---|
102
+ | `country` | object | 0.0% | Bolivia, Mozambique, Somalia |
103
+ | `iso3` | object | 0.0% | BOL, MOZ, SOM |
104
+ | `priority` | object | 0.0% | High Priority, Moderately Affected |
105
+ | `region` | object | 0.0% | Africa, Latin America and the Caribbean, Asia and the Pacific |
106
+ | `prioritycode` | int64 | 0.0% | 1.0 – 2.0 (mean 1.6486) |
107
+ | `esa_source` | object | 0.0% | HDX |
108
+ | `esa_processed` | object | 0.0% | 2026-04-05 |
109
+
110
+ ---
111
+
112
+ ## Numeric Summary
113
+
114
+ | Column | Min | Max | Mean | Median |
115
+ |---|---|---|---|---|
116
+ | `prioritycode` | 1.0 | 2.0 | 1.6486 | 2.0 |
117
+
118
+ ---
119
+
120
+ ## Curation
121
+
122
+ 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`. The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet.
123
+
124
+ ---
125
+
126
+ ## Limitations
127
+
128
+ - Data originates from HDX and has not been independently validated by ESA.
129
+ - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection.
130
+ - This dataset spans 37 countries; geographic and methodological inconsistencies across national boundaries may affect cross-country comparability.
131
+ - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/wfp-and-fao-overview-of-countries-affected-by-the-2015-16-el-nino) for the publisher's own methodology notes and caveats.
132
+
133
+ ---
134
+
135
+ ## Citation
136
+
137
+ ```bibtex
138
+ @dataset{hdx_africa_wfp_and_fao_overview_of_countries_affected_by_the_2015_16_el_nino,
139
+ title = {WFP and FAO Overview of Countries Affected by the El Niño},
140
+ author = {HDX},
141
+ year = {2025},
142
+ url = {https://data.humdata.org/dataset/wfp-and-fao-overview-of-countries-affected-by-the-2015-16-el-nino},
143
+ note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)}
144
+ }
145
+ ```
146
+
147
+ ---
148
+
149
+ *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*