Kossisoroyce commited on
Commit
96418d1
·
verified ·
1 Parent(s): 5ac0114

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +139 -22
README.md CHANGED
@@ -1,26 +1,143 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- features:
4
- - name: date_iso_3_country_ebola_confirmed_case_ebola_suspected_case_women_men_gender_not_specified_contact_cases_hospitalized_ebola_deaths_probable_ebola_deaths_deaths_women_deaths_men_deaths_gender_not_specified_recoveries_recoveries_women_recoveries_men_recoveries_gender_not_specified_vaccinated
5
- dtype: string
6
- - name: esa_source
7
- dtype: string
8
- - name: esa_processed
9
- dtype: string
10
  splits:
11
- - name: train
12
- num_bytes: 1886
13
- num_examples: 17
14
- - name: test
15
- num_bytes: 569
16
- num_examples: 5
17
- download_size: 7535
18
- dataset_size: 2455
19
- configs:
20
- - config_name: default
21
- data_files:
22
- - split: train
23
- path: data/train-*
24
- - split: test
25
- path: data/test-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-classification
17
+ task_ids: []
18
+ tags:
19
+ - africa
20
+ - humanitarian
21
+ - hdx
22
+ - electric-sheep-africa
23
+ - central-africa
24
+ - disease
25
+ - epidemics-outbreaks
26
+ - fatalities
27
+ - health
28
+ - hxl
29
+ - cod
30
+ pretty_name: "Democratic Republic of the Congo : Ebola (2021) Cumulative cases (national)"
31
  dataset_info:
 
 
 
 
 
 
 
32
  splits:
33
+ - name: train
34
+ num_examples: 17
35
+ - name: test
36
+ num_examples: 4
 
 
 
 
 
 
 
 
 
 
 
37
  ---
38
+
39
+ # Democratic Republic of the Congo : Ebola (2021) Cumulative cases (national)
40
+
41
+ **Publisher:** HERA - Humanitarian Emergency Response Africa · **Source:** [HDX](https://data.humdata.org/dataset/democratic-republic-of-the-congo-ebola-2021-cumulative-cases-national) · **License:** `cc-by` · **Updated:** 2025-04-10
42
+
43
+ ---
44
+
45
+ ## Abstract
46
+
47
+ National dataset of Ebola in Guinea (2021) - infections, recoveries, deaths, hospitalized, active cases, contact cases and gender data (if available). This dataset is a Pivot Table of the subnational data available on our HDX page.
48
+
49
+ Gender data is not available anymore. The architecture of this dataset might change over time, to remove gender data. If you have any information about Ebola in DRC, please let us know at org.hera@gmail.com.
50
+ Update frequency : when new data is available.
51
+
52
+ Each row in this dataset represents country-level aggregates. Data was last updated on HDX on 2025-04-10. Geographic scope: **COD**.
53
+
54
+ *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).*
55
+
56
+ ---
57
+
58
+ ## Dataset Characteristics
59
+
60
+ | | |
61
+ |---|---|
62
+ | **Domain** | Public health |
63
+ | **Unit of observation** | Country-level aggregates |
64
+ | **Rows (total)** | 22 |
65
+ | **Columns** | 3 (0 numeric, 3 categorical, 0 datetime) |
66
+ | **Train split** | 17 rows |
67
+ | **Test split** | 4 rows |
68
+ | **Geographic scope** | COD |
69
+ | **Publisher** | HERA - Humanitarian Emergency Response Africa |
70
+ | **HDX last updated** | 2025-04-10 |
71
+
72
+ ---
73
+
74
+ ## Variables
75
+
76
+ **Geographic** — `date_iso_3_country_ebola_confirmed_case_ebola_suspected_case_women_men_gender_not_specified_contact_cases_hospitalized_ebola_deaths_probable_ebola_deaths_deaths_women_deaths_men_deaths_gender_not_specified_recoveries_recoveries_women_recoveries_men_recoveries_gender_not_specified_vaccinated` (2021-02-06;COD;Republic Democratic of the Congo;1;0;1;0;0;70;0;1;0;1;0;0;0;0;0;0;0;;;;;;, 2021-02-08;COD;Republic Democratic of the Congo;0;0;0;0;0;47;0;0;0;0;0;0;0;0;0;0;0;;;;;;, CUMULATIVE;COD;Republic Democratic of the Congo;11;1;3;1;8;345;6;4;1;2;0;2;2;1;0;1;1475;;;;;;).
77
+
78
+ **Identifier / Metadata** — `esa_source` (HDX), `esa_processed` (2026-04-05).
79
+
80
+ ---
81
+
82
+ ## Quick Start
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+
87
+ ds = load_dataset("electricsheepafrica/africa-democratic-republic-of-the-congo-ebola-2021-cumulative-cases-national")
88
+ train = ds["train"].to_pandas()
89
+ test = ds["test"].to_pandas()
90
+
91
+ print(train.shape)
92
+ train.head()
93
+ ```
94
+
95
+ ---
96
+
97
+ ## Schema
98
+
99
+ | Column | Type | Null % | Range / Sample Values |
100
+ |---|---|---|---|
101
+ | `date_iso_3_country_ebola_confirmed_case_ebola_suspected_case_women_men_gender_not_specified_contact_cases_hospitalized_ebola_deaths_probable_ebola_deaths_deaths_women_deaths_men_deaths_gender_not_specified_recoveries_recoveries_women_recoveries_men_recoveries_gender_not_specified_vaccinated` | object | 0.0% | 2021-02-06;COD;Republic Democratic of the Congo;1;0;1;0;0;70;0;1;0;1;0;0;0;0;0;0;0;;;;;;, 2021-02-08;COD;Republic Democratic of the Congo;0;0;0;0;0;47;0;0;0;0;0;0;0;0;0;0;0;;;;;;, CUMULATIVE;COD;Republic Democratic of the Congo;11;1;3;1;8;345;6;4;1;2;0;2;2;1;0;1;1475;;;;;; |
102
+ | `esa_source` | object | 0.0% | HDX |
103
+ | `esa_processed` | object | 0.0% | 2026-04-05 |
104
+
105
+ ---
106
+
107
+ ## Numeric Summary
108
+
109
+ | Column | Min | Max | Mean | Median |
110
+ |---|---|---|---|---|
111
+ _No numeric columns._
112
+
113
+ ---
114
+
115
+ ## Curation
116
+
117
+ 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 exact duplicate rows were removed. The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet.
118
+
119
+ ---
120
+
121
+ ## Limitations
122
+
123
+ - Data originates from HERA - Humanitarian Emergency Response Africa and has not been independently validated by ESA.
124
+ - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection.
125
+ - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/democratic-republic-of-the-congo-ebola-2021-cumulative-cases-national) for the publisher's own methodology notes and caveats.
126
+
127
+ ---
128
+
129
+ ## Citation
130
+
131
+ ```bibtex
132
+ @dataset{hdx_africa_democratic_republic_of_the_congo_ebola_2021_cumulative_cases_national,
133
+ title = {Democratic Republic of the Congo : Ebola (2021) Cumulative cases (national)},
134
+ author = {HERA - Humanitarian Emergency Response Africa},
135
+ year = {2025},
136
+ url = {https://data.humdata.org/dataset/democratic-republic-of-the-congo-ebola-2021-cumulative-cases-national},
137
+ note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)}
138
+ }
139
+ ```
140
+
141
+ ---
142
+
143
+ *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*