Kossisoroyce commited on
Commit
7a1c070
·
verified ·
1 Parent(s): fe1efb5

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +142 -34
README.md CHANGED
@@ -1,38 +1,146 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- features:
4
- - name: reporting_month
5
- dtype: timestamp[ns]
6
- - name: state
7
- dtype: string
8
- - name: locality
9
- dtype: string
10
- - name: cluster_name
11
- dtype: string
12
- - name: org_name
13
- dtype: string
14
- - name: org_acronym
15
- dtype: string
16
- - name: org_type
17
- dtype: string
18
- - name: esa_source
19
- dtype: string
20
- - name: esa_processed
21
- dtype: string
22
  splits:
23
- - name: train
24
- num_bytes: 258696
25
- num_examples: 2135
26
- - name: test
27
- num_bytes: 64813
28
- num_examples: 534
29
- download_size: 40727
30
- dataset_size: 323509
31
- configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: data/train-*
36
- - split: test
37
- path: data/test-*
38
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - 1K<n<10K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - tabular-classification
17
+ - tabular-regression
18
+ task_ids: []
19
+ tags:
20
+ - africa
21
+ - humanitarian
22
+ - hdx
23
+ - electric-sheep-africa
24
+ - hxl
25
+ - operational-presence
26
+ - who-is-doing-what-and-where-3w-4w-5w
27
+ - sdn
28
+ pretty_name: "Sudan: Operational Presence"
29
  dataset_info:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  splits:
31
+ - name: train
32
+ num_examples: 2135
33
+ - name: test
34
+ num_examples: 533
 
 
 
 
 
 
 
 
 
 
 
35
  ---
36
+
37
+ # Sudan: Operational Presence
38
+
39
+ **Publisher:** OCHA Sudan · **Source:** [HDX](https://data.humdata.org/dataset/sudan-operational-presence) · **License:** `cc-by` · **Updated:** 2026-04-01
40
+
41
+ ---
42
+
43
+ ## Abstract
44
+
45
+ The Who does What Where (3W) is a core humanitarian coordination dataset. It is critical to know where humanitarian organizations are working and what they are doing in order to identify gaps and plan for future humanitarian response. This dataset includes a list of humanitarian organizations by state and sector currently registered in Sudan. If you have updates for the 3W please contact OCHASudan@un.org.
46
+
47
+ Each row in this dataset represents first-level administrative unit observations. Temporal coverage is indicated by the `reporting_month` column(s). Geographic scope: **SDN**.
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** | Humanitarian and development data |
58
+ | **Unit of observation** | First-level administrative unit observations |
59
+ | **Rows (total)** | 2,669 |
60
+ | **Columns** | 9 (0 numeric, 8 categorical, 1 datetime) |
61
+ | **Train split** | 2,135 rows |
62
+ | **Test split** | 533 rows |
63
+ | **Geographic scope** | SDN |
64
+ | **Publisher** | OCHA Sudan |
65
+ | **HDX last updated** | 2026-04-01 |
66
+
67
+ ---
68
+
69
+ ## Variables
70
+
71
+ **Geographic** — `state` (North Darfur, Khartoum, Gedaref), `locality` (Tawila, Wasat Al Gedaref, Madeinat Al Gedaref), `org_acronym` (SCI, UNICEF, RI), `org_type` (INGO, NNGO, UN Agency).
72
+
73
+ **Temporal** — `reporting_month`.
74
+
75
+ **Identifier / Metadata** — `cluster_name` (Protection, Health, Nutrition), `org_name` (Save the Children International, United Nations Children's Fund, Relief International), `esa_source` (HDX), `esa_processed` (2026-04-09).
76
+
77
+ ---
78
+
79
+ ## Quick Start
80
+
81
+ ```python
82
+ from datasets import load_dataset
83
+
84
+ ds = load_dataset("electricsheepafrica/africa-sudan-operational-presence")
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
+ | `reporting_month` | datetime64[ns] | 0.0% | |
99
+ | `state` | object | 0.0% | North Darfur, Khartoum, Gedaref |
100
+ | `locality` | object | 0.0% | Tawila, Wasat Al Gedaref, Madeinat Al Gedaref |
101
+ | `cluster_name` | object | 0.0% | Protection, Health, Nutrition |
102
+ | `org_name` | object | 0.0% | Save the Children International, United Nations Children's Fund, Relief International |
103
+ | `org_acronym` | object | 0.0% | SCI, UNICEF, RI |
104
+ | `org_type` | object | 0.0% | INGO, NNGO, UN Agency |
105
+ | `esa_source` | object | 0.0% | HDX |
106
+ | `esa_processed` | object | 0.0% | 2026-04-09 |
107
+
108
+ ---
109
+
110
+ ## Numeric Summary
111
+
112
+ | Column | Min | Max | Mean | Median |
113
+ |---|---|---|---|---|
114
+ _No numeric columns._
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`. 1 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.
121
+
122
+ ---
123
+
124
+ ## Limitations
125
+
126
+ - Data originates from OCHA Sudan 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/sudan-operational-presence) for the publisher's own methodology notes and caveats.
129
+
130
+ ---
131
+
132
+ ## Citation
133
+
134
+ ```bibtex
135
+ @dataset{hdx_africa_sudan_operational_presence,
136
+ title = {Sudan: Operational Presence},
137
+ author = {OCHA Sudan},
138
+ year = {2026},
139
+ url = {https://data.humdata.org/dataset/sudan-operational-presence},
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.*