Kossisoroyce commited on
Commit
025f6d5
·
verified ·
1 Parent(s): 8537185

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +142 -25
README.md CHANGED
@@ -1,29 +1,146 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- features:
4
- - name: description
5
- dtype: string
6
- - name: cluster
7
- dtype: string
8
- - name: population
9
- dtype: int64
10
- - name: in_need
11
- dtype: int64
12
- - name: targeted
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: 69
21
- num_examples: 1
22
- download_size: 3128
23
- dataset_size: 69
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - gender-and-age-disaggregated-data-gadd
24
+ - humanitarian-needs-overview-hno
25
+ - hxl
26
+ - people-in-need-pin
27
+ - cmr
28
+ pretty_name: "Cameroon: Humanitarian Needs"
29
  dataset_info:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  splits:
31
+ - name: train
32
+ num_examples: 0
33
+ - name: test
34
+ num_examples: 0
 
 
 
 
 
 
35
  ---
36
+
37
+ # Cameroon: Humanitarian Needs
38
+
39
+ **Publisher:** OCHA Humanitarian Programme Cycle Tools (HPC Tools) · **Source:** [HDX](https://data.humdata.org/dataset/cameroon-humanitarian-needs) · **License:** `cc-by` · **Updated:** 2026-02-13
40
+
41
+ ---
42
+
43
+ ## Abstract
44
+
45
+ This dataset was compiled by the United Nations Office for the Coordination of Humanitarian Affairs (UNOCHA) on behalf of the Humanitarian Country Team and partners. It provides the Humanitarian Country Team’s shared understanding of the crisis, including the most pressing humanitarian need and the estimated number of people who need assistance, and represents a consolidated evidence base and helps inform joint strategic response planning.
46
+
47
+ Each row in this dataset represents geolocated point observations. Data was last updated on HDX on 2026-02-13. Geographic scope: **CMR**.
48
+
49
+ *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).*
50
+
51
+ ---
52
+
53
+ ## Dataset Characteristics
54
+
55
+ | | |
56
+ |---|---|
57
+ | **Domain** | Demographics and population |
58
+ | **Unit of observation** | Geolocated point observations |
59
+ | **Rows (total)** | 1 |
60
+ | **Columns** | 7 (3 numeric, 4 categorical, 0 datetime) |
61
+ | **Train split** | 0 rows |
62
+ | **Test split** | 0 rows |
63
+ | **Geographic scope** | CMR |
64
+ | **Publisher** | OCHA Humanitarian Programme Cycle Tools (HPC Tools) |
65
+ | **HDX last updated** | 2026-02-13 |
66
+
67
+ ---
68
+
69
+ ## Variables
70
+
71
+ **Geographic** — `population` (range 29900000.0–29900000.0).
72
+
73
+ **Identifier / Metadata** — `esa_source` (HDX), `esa_processed` (2026-04-04).
74
+
75
+ **Other** — `description` (GHO Estimates), `cluster` (ALL), `in_need` (range 2900000.0–2900000.0), `targeted` (range 1800000.0–1800000.0).
76
+
77
+ ---
78
+
79
+ ## Quick Start
80
+
81
+ ```python
82
+ from datasets import load_dataset
83
+
84
+ ds = load_dataset("electricsheepafrica/africa-cameroon-humanitarian-needs")
85
+ train = ds["train"].to_pandas()
86
+ test = ds["test"].to_pandas()
87
+
88
+ print(train.shape)
89
+ train.head()
90
+ ```
91
+
92
+ ---
93
+
94
+ ## Schema
95
+
96
+ | Column | Type | Null % | Range / Sample Values |
97
+ |---|---|---|---|
98
+ | `description` | object | 0.0% | GHO Estimates |
99
+ | `cluster` | object | 0.0% | ALL |
100
+ | `population` | int64 | 0.0% | 29900000.0 – 29900000.0 (mean 29900000.0) |
101
+ | `in_need` | int64 | 0.0% | 2900000.0 – 2900000.0 (mean 2900000.0) |
102
+ | `targeted` | int64 | 0.0% | 1800000.0 – 1800000.0 (mean 1800000.0) |
103
+ | `esa_source` | object | 0.0% | HDX |
104
+ | `esa_processed` | object | 0.0% | 2026-04-04 |
105
+
106
+ ---
107
+
108
+ ## Numeric Summary
109
+
110
+ | Column | Min | Max | Mean | Median |
111
+ |---|---|---|---|---|
112
+ | `population` | 29900000.0 | 29900000.0 | 29900000.0 | 29900000.0 |
113
+ | `in_need` | 2900000.0 | 2900000.0 | 2900000.0 | 2900000.0 |
114
+ | `targeted` | 1800000.0 | 1800000.0 | 1800000.0 | 1800000.0 |
115
+
116
+ ---
117
+
118
+ ## Curation
119
+
120
+ 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`. 4 column(s) with >80% missing values were removed: `category`, `affected`, `reached`, `info`. The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet.
121
+
122
+ ---
123
+
124
+ ## Limitations
125
+
126
+ - Data originates from OCHA Humanitarian Programme Cycle Tools (HPC Tools) and has not been independently validated by ESA.
127
+ - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection.
128
+ - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/cameroon-humanitarian-needs) for the publisher's own methodology notes and caveats.
129
+
130
+ ---
131
+
132
+ ## Citation
133
+
134
+ ```bibtex
135
+ @dataset{hdx_africa_cameroon_humanitarian_needs,
136
+ title = {Cameroon: Humanitarian Needs},
137
+ author = {OCHA Humanitarian Programme Cycle Tools (HPC Tools)},
138
+ year = {2026},
139
+ url = {https://data.humdata.org/dataset/cameroon-humanitarian-needs},
140
+ note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)}
141
+ }
142
+ ```
143
+
144
+ ---
145
+
146
+ *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*