Olaroti commited on
Commit
7c0999b
·
verified ·
1 Parent(s): 973aa92

Standardize Electric Sheep Africa dataset card

Browse files
Files changed (1) hide show
  1. README.md +132 -13
README.md CHANGED
@@ -1,18 +1,137 @@
1
- # Under-five mortality rate (SDG 3.2.1) (per 1000 live births)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- ## Dataset Description
4
- This dataset provides information on **'Under-five mortality rate'** for countries in the WHO African Region. The data is disaggregated by the **'Sex'** dimension, allowing for analysis of health inequalities across different population subgroups.
5
 
6
- **Units:** SDG 3.2.1
7
 
8
- ## Dimensions and Subgroups
9
- - **Dimension:** `Sex`
10
- - **Available Subgroups:** `Female, Male`
 
11
 
12
- ## Data Structure
13
- The dataset is in a wide format.
14
- - **Index:** `Year` (formatted as YYYY-01-01)
15
- - **Columns:** Each column represents a specific country and subgroup, formatted as `country-name_subgroup-name`. For example, `algeria_female`.
16
- - **Values:** The cell values represent the estimated measurement for that indicator, country, subgroup, and year.
17
 
18
- This dataset is part of a larger collection of health inequality indicators processed from the WHO Health Inequality Data Repository.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - tabular-classification
7
+ - tabular-regression
8
+ multilinguality: monolingual
9
+ size_categories:
10
+ - n<1K
11
+ tags:
12
+ - "africa"
13
+ - "electric-sheep-africa"
14
+ - "open-data"
15
+ - "metadata-backed"
16
+ - "health"
17
+ - "csv"
18
+ - "tabular"
19
+ - "text"
20
+ - "mortality"
21
+ pretty_name: "Under Five Mortality Rateby Sex for African Countries | Africa (World Health Organization)"
22
+ ---
23
 
24
+ # Under Five Mortality Rateby Sex for African Countries | Africa (World Health Organization)
 
25
 
26
+ **Size category:** `n<1K` - **Formats:** `csv` - **Sector:** health - *Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
27
 
28
+ ![size](https://img.shields.io/badge/size-n%3C1K-blue)
29
+ ![sector](https://img.shields.io/badge/sector-health-green)
30
+ ![downloads](https://img.shields.io/badge/HF_downloads-16-orange)
31
+ ![license](https://img.shields.io/badge/license-other-lightgrey)
32
 
33
+ ## TL;DR
 
 
 
 
34
 
35
+ This dataset is part of the Electric Sheep Africa catalog on Hugging Face. It is indexed for African data discovery with standardized metadata, loading guidance, provenance notes, and analyst-oriented context.
36
+
37
+ ## What This Dataset Covers
38
+
39
+ Health datasets help researchers examine disease burden, service delivery, risk factors, outcomes, and public-health program performance.
40
+
41
+ Dataset context from the existing Hugging Face card: Under-five mortality rate (SDG 3.2.1) (per 1000 live births) Dataset Description This dataset provides information on 'Under-five mortality rate' for countries in the WHO African Region. The data is disaggregated by the 'Sex' dimension, allowing for analysis of health inequalities across different population subgroups. Units: SDG 3.2.1 Dimensions and Subgroups Dimension: Sex Available Subgroups: Female, Male Data Structure The dataset is in a wide… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries.
42
+
43
+ ## Dataset Profile
44
+
45
+ | Field | Value |
46
+ |---|---|
47
+ | Hugging Face repo | [`electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries`](https://huggingface.co/datasets/electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries) |
48
+ | Sector | health |
49
+ | Topic tags | health |
50
+ | Modalities | `tabular`, `text` |
51
+ | Formats | `csv` |
52
+ | Size category | `n<1K` |
53
+ | Countries | Africa-wide or source-defined African coverage |
54
+ | ISO3 coverage | `not declared` |
55
+ | Last modified on HF | `2025-06-24 07:44:15+00:00` |
56
+ | Inventory snapshot | `2026-07-16T16:00:34Z` |
57
+
58
+ ## How To Read This Dataset
59
+
60
+ - Start from the repository files and the dataset viewer when available.
61
+ - Treat the README context as a fast orientation layer; confirm variable definitions and units in the data files before modeling.
62
+ - Use explicit country columns when present. When geography is only implied by the title or source metadata, document that assumption in downstream analysis.
63
+ - Preserve missing values until you have a defensible imputation rule.
64
+
65
+ ## Usage
66
+
67
+ ```python
68
+ from datasets import load_dataset
69
+
70
+ ds = load_dataset("electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries")
71
+ print(ds)
72
+
73
+ split_name = next(iter(ds))
74
+ table = ds[split_name]
75
+ print(table.features)
76
+ print(table[:3])
77
+ ```
78
+
79
+ ### Convert To Pandas When Tabular
80
+
81
+ ```python
82
+ from datasets import Dataset
83
+
84
+ first_split = ds[next(iter(ds))]
85
+ if isinstance(first_split, Dataset):
86
+ df = first_split.to_pandas()
87
+ print(df.head())
88
+ ```
89
+
90
+ ## Data Quality Notes
91
+
92
+ - This card was standardized from the Electric Sheep Africa Hugging Face metadata inventory.
93
+ - Exact schema, row counts, and source files should be inspected in the repository data files.
94
+ - Metadata gaps from the inventory: country, upstream_publisher, license, language.
95
+ - Do not infer policy meaning from labels alone; confirm definitions, units, and methods in the source material.
96
+
97
+ ## Source And Provenance
98
+
99
+ - **Source context:** World Health Organization
100
+ - **Publisher/source attribution:** WHO public data
101
+ - **License:** Source-specific or other license
102
+ - **Hugging Face URL:** [https://huggingface.co/datasets/electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries](https://huggingface.co/datasets/electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries)
103
+ - **Inventory retrieved at:** `2026-07-16T16:00:34Z`
104
+
105
+ ## Suggested Analyses
106
+
107
+ - Inspect schema and missingness before modeling.
108
+ - Profile variables by geography, time, and subgroup columns where present.
109
+ - Join with other Electric Sheep Africa datasets using explicit country, year, and indicator fields when available.
110
+ - Build reproducible notebooks that cite both the original source context and the Electric Sheep Africa Hugging Face repo.
111
+
112
+ ## Citation
113
+
114
+ ```bibtex
115
+ @misc{electric_sheep_africa_under_five_mortality_rateby_sex_for_african_countries_2026,
116
+ title = {Under Five Mortality Rateby Sex for African Countries | Africa (World Health Organization)},
117
+ author = {WHO public data},
118
+ year = {2026},
119
+ url = {https://huggingface.co/datasets/electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries},
120
+ publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa},
121
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/under-five-mortality-rateby-sex-for-african-countries}}
122
+ }
123
+ ```
124
+
125
+ ## License
126
+
127
+ Released under Source-specific or other license.
128
+
129
+ Original source rights remain with the original publisher or data provider. Electric Sheep Africa engineering standardizes discovery metadata, documentation, and usage guidance for analysis on Hugging Face.
130
+
131
+ ## About Electric Sheep Africa
132
+
133
+ Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face.
134
+
135
+ ---
136
+
137
+ Provenance: metadata-backed README standardized 2026-08-12 by the Electric Sheep Africa README system. Inventory source: `catalog/esa_metadata_inventory/master_metadata.jsonl`.