Kossisoroyce commited on
Commit
c84db5a
·
verified ·
1 Parent(s): e682e38

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +122 -30
README.md CHANGED
@@ -1,32 +1,124 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: country_name
5
- dtype: string
6
- - name: country_iso3
7
- dtype: string
8
- - name: year
9
- dtype: int64
10
- - name: Pregnant women with anemia
11
- dtype: float64
12
- - name: Children with anemia
13
- dtype: float64
14
- - name: World region according to OWID
15
- dtype: string
16
- splits:
17
- - name: train
18
- num_bytes: 55798
19
- num_examples: 1036
20
- - name: test
21
- num_bytes: 13749
22
- num_examples: 260
23
- download_size: 16538
24
- dataset_size: 69547
25
- configs:
26
- - config_name: default
27
- data_files:
28
- - split: train
29
- path: data/train-*
30
- - split: test
31
- path: data/test-*
32
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - tabular-classification
7
+ - tabular-regression
8
+ - time-series-forecasting
9
+ multilinguality: monolingual
10
+ size_categories:
11
+ - 1K<n<10K
12
+ tags:
13
+ - tabular
14
+ - africa
15
+ - our-world-in-data
16
+ - anemia-pregnant-women-vs-children
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Anemia Pregnant Women Vs Children | Africa (Our World in Data)"
 
 
 
 
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Anemia Pregnant Women Vs Children | Africa (Our World in Data)
24
+
25
+ 🌍 **1,296 observations** · **54 Africa countries** · **2000–2023** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-1,296-blue) ![countries](https://img.shields.io/badge/countries-54-green) ![years](https://img.shields.io/badge/years-2000–2023-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **1,296 observations** of `Anemia Pregnant Women Vs Children` data across **54 Africa countries**, spanning **2000–2023**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/anemia-pregnant-women-vs-children)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Anemia Pregnant Women Vs Children
39
+
40
+ ## Geographic coverage
41
+
42
+ 54 Africa countries · top rows shown below, sorted by row count:
43
+
44
+ | Country | Rows | First year | Last year |
45
+ |---------|-----:|-----------:|----------:|
46
+ | `AGO` | 24 | 2000 | 2023 |
47
+ | `BDI` | 24 | 2000 | 2023 |
48
+ | `BEN` | 24 | 2000 | 2023 |
49
+ | `BFA` | 24 | 2000 | 2023 |
50
+ | `BWA` | 24 | 2000 | 2023 |
51
+ | `CAF` | 24 | 2000 | 2023 |
52
+ | `CIV` | 24 | 2000 | 2023 |
53
+ | `CMR` | 24 | 2000 | 2023 |
54
+ | `COD` | 24 | 2000 | 2023 |
55
+ | `COG` | 24 | 2000 | 2023 |
56
+ | `COM` | 24 | 2000 | 2023 |
57
+ | `CPV` | 24 | 2000 | 2023 |
58
+ | `DJI` | 24 | 2000 | 2023 |
59
+ | `DZA` | 24 | 2000 | 2023 |
60
+ | `EGY` | 24 | 2000 | 2023 |
61
+ | ... | _39 more countries_ | | |
62
+
63
+ ## Schema
64
+
65
+ | Column | Type | Description | Example |
66
+ |--------|------|-------------|---------|
67
+ | `country_name` | `string` | — | `Algeria` |
68
+ | `country_iso3` | `string` | — | `DZA` |
69
+ | `year` | `int64` | — | `2000` |
70
+ | `Pregnant women with anemia` | `float64` | — | `36.1` |
71
+ | `Children with anemia` | `float64` | — | `39.9` |
72
+ | `World region according to OWID` | `string` | — | `Africa` |
73
+
74
+ ## Usage
75
+
76
+ ```python
77
+ from datasets import load_dataset
78
+
79
+ ds = load_dataset("electricsheepafrica/africa-owid-anemia-pregnant-women-vs-children")
80
+ df = ds["train"].to_pandas()
81
+ print(df.head())
82
+ ```
83
+
84
+ ### Filter to one country
85
+
86
+ ```python
87
+ kenya = df[df["country_iso3"] == "KEN"]
88
+ ```
89
+
90
+ ### Time-series for a single indicator
91
+
92
+ ```python
93
+ sample = df.sort_values("year")
94
+ sample.plot(x="year", y="Pregnant women with anemia")
95
+ ```
96
+
97
+ ## Citation
98
+
99
+ ```bibtex
100
+ @misc{africa_owid_anemia_pregnant_women_vs_children_2023,
101
+ title = {Anemia Pregnant Women Vs Children | Africa (Our World in Data)},
102
+ author = {Our World in Data},
103
+ year = {2023},
104
+ url = {https://ourworldindata.org/grapher/anemia-pregnant-women-vs-children},
105
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
106
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-owid-anemia-pregnant-women-vs-children}}
107
+ }
108
+ ```
109
+
110
+ ## License
111
+
112
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
113
+
114
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.
115
+
116
+ ## About Electric Sheep
117
+
118
+ Electric Sheep Africa is part of the Electric Sheep mission: a unified, ML-ready data layer for Africa on HuggingFace. We pull data from authoritative open sources, normalize the schemas, package as Parquet, and publish with consistent dataset cards so researchers and developers can use `load_dataset()` to start working in seconds.
119
+
120
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
121
+
122
+ ---
123
+
124
+ _Provenance: ingested 2026-06-01 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/anemia-pregnant-women-vs-children_