File size: 6,063 Bytes
0189f65
 
 
dc2ba53
 
 
 
 
0189f65
dc2ba53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0189f65
 
dc2ba53
0189f65
dc2ba53
0189f65
dc2ba53
 
 
 
0189f65
dc2ba53
0189f65
dc2ba53
0189f65
dc2ba53
0189f65
dc2ba53
0189f65
dc2ba53
0189f65
dc2ba53
0189f65
dc2ba53
 
 
 
 
 
 
 
 
 
 
 
0189f65
dc2ba53
0189f65
dc2ba53
 
 
 
0189f65
dc2ba53
0189f65
dc2ba53
 
0189f65
dc2ba53
 
0189f65
dc2ba53
 
 
 
 
0189f65
dc2ba53
0189f65
 
dc2ba53
 
 
 
 
 
0189f65
 
dc2ba53
 
 
 
 
 
 
 
0189f65
dc2ba53
 
 
 
 
0189f65
dc2ba53
0189f65
dc2ba53
 
 
 
0189f65
 
 
 
dc2ba53
 
 
 
 
 
 
0189f65
 
 
 
 
dc2ba53
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
---
license: cc-by-4.0
language:
- en
task_categories:
- tabular-classification
- tabular-regression
multilinguality: monolingual
size_categories:
- 10K<n<100K
tags:
- "africa"
- "electric-sheep-africa"
- "open-data"
- "metadata-backed"
- "health"
- "csv"
- "tabular"
- "text"
- "healthcare"
- "preterm-birth"
- "kangaroo-mother-care"
- "neonatal"
- "low-birth-weight"
- "kmc"
- "sub-saharan-africa"
- "lmic"
- "mortality"
- "maternal"
pretty_name: "Preterm Birth & Kangaroo Mother Care (GA, BW, KMC, Respiratory Support, Outcomes) | Africa (Electric Sheep Africa metadata inventory)"
---

# Preterm Birth & Kangaroo Mother Care (GA, BW, KMC, Respiratory Support, Outcomes) | Africa (Electric Sheep Africa metadata inventory)

**Size category:** `10K<n<100K` - **Formats:** `csv` - **Sector:** health - *Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*

![size](https://img.shields.io/badge/size-10K%3Cn%3C100K-blue)
![sector](https://img.shields.io/badge/sector-health-green)
![downloads](https://img.shields.io/badge/HF_downloads-31-orange)
![license](https://img.shields.io/badge/license-cc--by--4.0-lightgrey)

## TL;DR

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.

## What This Dataset Covers

Health datasets help researchers examine disease burden, service delivery, risk factors, outcomes, and public-health program performance.

Dataset context from the existing Hugging Face card: Preterm Birth & Kangaroo Mother Care Dataset Abstract This dataset provides 30,000 simulated preterm neonate records (10,000 per scenario) from sub-Saharan Africa. Each record contains 50+ variables including maternal factors, gestational age, birth weight, KMC practice, respiratory support (CPAP, surfactant), complications (RDS, sepsis, NEC), and neonatal outcomes. Three settings: NICU (8% mortality), special care nursery (14%), and postnatal ward (33%). 1.… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/preterm-birth-kmc.

## Dataset Profile

| Field | Value |
|---|---|
| Hugging Face repo | [`electricsheepafrica/preterm-birth-kmc`](https://huggingface.co/datasets/electricsheepafrica/preterm-birth-kmc) |
| Sector | health |
| Topic tags | healthcare, preterm-birth, kangaroo-mother-care, neonatal, low-birth-weight, kmc, sub-saharan-africa, lmic |
| Modalities | `tabular`, `text` |
| Formats | `csv` |
| Size category | `10K<n<100K` |
| Countries | Africa-wide or source-defined African coverage |
| ISO3 coverage | `not declared` |
| Last modified on HF | `2026-02-10 21:41:47+00:00` |
| Inventory snapshot | `2026-07-16T16:00:34Z` |

## How To Read This Dataset

- Start from the repository files and the dataset viewer when available.
- Treat the README context as a fast orientation layer; confirm variable definitions and units in the data files before modeling.
- Use explicit country columns when present. When geography is only implied by the title or source metadata, document that assumption in downstream analysis.
- Preserve missing values until you have a defensible imputation rule.

## Usage

```python
from datasets import load_dataset

ds = load_dataset("electricsheepafrica/preterm-birth-kmc")
print(ds)

split_name = next(iter(ds))
table = ds[split_name]
print(table.features)
print(table[:3])
```

### Convert To Pandas When Tabular

```python
from datasets import Dataset

first_split = ds[next(iter(ds))]
if isinstance(first_split, Dataset):
    df = first_split.to_pandas()
    print(df.head())
```

## Data Quality Notes

- This card was standardized from the Electric Sheep Africa Hugging Face metadata inventory.
- Exact schema, row counts, and source files should be inspected in the repository data files.
- Metadata gaps from the inventory: country, upstream_publisher.
- Do not infer policy meaning from labels alone; confirm definitions, units, and methods in the source material.

## Source And Provenance

- **Source context:** Electric Sheep Africa metadata inventory
- **Publisher/source attribution:** Public dataset metadata
- **License:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
- **Hugging Face URL:** [https://huggingface.co/datasets/electricsheepafrica/preterm-birth-kmc](https://huggingface.co/datasets/electricsheepafrica/preterm-birth-kmc)
- **Inventory retrieved at:** `2026-07-16T16:00:34Z`

## Suggested Analyses

- Inspect schema and missingness before modeling.
- Profile variables by geography, time, and subgroup columns where present.
- Join with other Electric Sheep Africa datasets using explicit country, year, and indicator fields when available.
- Build reproducible notebooks that cite both the original source context and the Electric Sheep Africa Hugging Face repo.

## Citation

```bibtex
@misc{electric_sheep_africa_preterm_birth_kmc_2026,
  title        = {Preterm Birth & Kangaroo Mother Care (GA, BW, KMC, Respiratory Support, Outcomes) | Africa (Electric Sheep Africa metadata inventory)},
  author       = {Public dataset metadata},
  year         = {2026},
  url          = {https://huggingface.co/datasets/electricsheepafrica/preterm-birth-kmc},
  publisher    = {Hugging Face Datasets, engineered by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/preterm-birth-kmc}}
}
```

## License

Released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).

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.

## About Electric Sheep Africa

Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face.

---

Provenance: metadata-backed README standardized 2026-08-12 by the Electric Sheep Africa README system. Inventory source: `catalog/esa_metadata_inventory/master_metadata.jsonl`.