Kossisoroyce commited on
Commit
704a5d4
·
verified ·
1 Parent(s): 6ba275e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +120 -26
README.md CHANGED
@@ -1,28 +1,122 @@
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: Nurses and midwives (per 1,000 people)
11
- dtype: float64
12
- splits:
13
- - name: train
14
- num_bytes: 16894
15
- num_examples: 476
16
- - name: test
17
- num_bytes: 4240
18
- num_examples: 120
19
- download_size: 9799
20
- dataset_size: 21134
21
- configs:
22
- - config_name: default
23
- data_files:
24
- - split: train
25
- path: data/train-*
26
- - split: test
27
- path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - n<1K
12
+ tags:
13
+ - tabular
14
+ - africa
15
+ - our-world-in-data
16
+ - nurses-and-midwives-per-1000-people
17
+ - owid
18
+ - long-run-series
19
+ - time-series
20
+ pretty_name: "Nurses And Midwives Per 1000 People | Africa (Our World in Data)"
 
 
 
 
 
 
 
21
  ---
22
+
23
+ # Nurses And Midwives Per 1000 People | Africa (Our World in Data)
24
+
25
+ 🌍 **596 observations** · **54 Africa countries** · **1990–2023** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
26
+
27
+ ![rows](https://img.shields.io/badge/rows-596-blue) ![countries](https://img.shields.io/badge/countries-54-green) ![years](https://img.shields.io/badge/years-1990–2023-orange) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
28
+
29
+ ## TL;DR
30
+
31
+ This dataset contains **596 observations** of `Nurses And Midwives Per 1000 People` data across **54 Africa countries**, spanning **1990–2023**.
32
+
33
+ ## About the source
34
+
35
+ - **Source:** [Our World in Data](https://ourworldindata.org/grapher/nurses-and-midwives-per-1000-people)
36
+ - **Publisher:** Our World in Data
37
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
38
+ - **Topic:** Nurses And Midwives Per 1000 People
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
+ | `ZAF` | 24 | 1998 | 2022 |
47
+ | `MOZ` | 24 | 1999 | 2022 |
48
+ | `BWA` | 22 | 1998 | 2023 |
49
+ | `TCD` | 18 | 1997 | 2023 |
50
+ | `CPV` | 16 | 2004 | 2023 |
51
+ | `BFA` | 16 | 2004 | 2023 |
52
+ | `KEN` | 16 | 2004 | 2023 |
53
+ | `MUS` | 16 | 2003 | 2022 |
54
+ | `GMB` | 15 | 2003 | 2023 |
55
+ | `CIV` | 15 | 2004 | 2023 |
56
+ | `GHA` | 14 | 2004 | 2023 |
57
+ | `NGA` | 14 | 2003 | 2022 |
58
+ | `SYC` | 14 | 2004 | 2023 |
59
+ | `ZWE` | 14 | 1990 | 2022 |
60
+ | `MDG` | 14 | 2002 | 2022 |
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` | — | `2002` |
70
+ | `Nurses and midwives (per 1,000 people)` | `float64` | — | `2.197` |
71
+
72
+ ## Usage
73
+
74
+ ```python
75
+ from datasets import load_dataset
76
+
77
+ ds = load_dataset("electricsheepafrica/africa-owid-nurses-and-midwives-per-1000-people")
78
+ df = ds["train"].to_pandas()
79
+ print(df.head())
80
+ ```
81
+
82
+ ### Filter to one country
83
+
84
+ ```python
85
+ kenya = df[df["country_iso3"] == "KEN"]
86
+ ```
87
+
88
+ ### Time-series for a single indicator
89
+
90
+ ```python
91
+ sample = df.sort_values("year")
92
+ sample.plot(x="year", y="Nurses and midwives (per 1,000 people)")
93
+ ```
94
+
95
+ ## Citation
96
+
97
+ ```bibtex
98
+ @misc{africa_owid_nurses_and_midwives_per_1000_people_2023,
99
+ title = {Nurses And Midwives Per 1000 People | Africa (Our World in Data)},
100
+ author = {Our World in Data},
101
+ year = {2023},
102
+ url = {https://ourworldindata.org/grapher/nurses-and-midwives-per-1000-people},
103
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
104
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-owid-nurses-and-midwives-per-1000-people}}
105
+ }
106
+ ```
107
+
108
+ ## License
109
+
110
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
111
+
112
+ Original data © Our World in Data. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.
113
+
114
+ ## About Electric Sheep
115
+
116
+ 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.
117
+
118
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
119
+
120
+ ---
121
+
122
+ _Provenance: ingested 2026-06-06 via the Electric Sheep pipeline. Source URL: https://ourworldindata.org/grapher/nurses-and-midwives-per-1000-people_