Kossiesa commited on
Commit
d4a5de9
·
verified ·
1 Parent(s): 0d9aa7e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +136 -30
README.md CHANGED
@@ -1,32 +1,138 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: indicator_id
5
- dtype: string
6
- - name: indicator_name
7
- dtype: string
8
- - name: country_iso3
9
- dtype: string
10
- - name: country_name
11
- dtype: string
12
- - name: year
13
- dtype: int64
14
- - name: value
15
- dtype: float64
16
- splits:
17
- - name: train
18
- num_bytes: 9905
19
- num_examples: 67
20
- - name: test
21
- num_bytes: 2478
22
- num_examples: 17
23
- download_size: 7678
24
- dataset_size: 12383
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
+ - n<1K
12
+ tags:
13
+ - tabular
14
+ - africa
15
+ - world-bank-—-education-statistics
16
+ - education-statistics
17
+ - world-bank
18
+ - worldbank
19
+ - development-indicators
20
+ - time-series
21
+ pretty_name: "Initial household funding per secondary student as a percentage of GDP per capita | Africa (World Bank — Education Statistics)"
 
 
 
 
 
 
 
 
 
 
22
  ---
23
+
24
+ # Initial household funding per secondary student as a percentage of GDP per capita | Africa (World Bank — Education Statistics)
25
+
26
+ 🌍 **84 observations** · **16 Africa countries** · **1999–2016** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
27
+
28
+ ![rows](https://img.shields.io/badge/rows-84-blue) ![countries](https://img.shields.io/badge/countries-16-green) ![years](https://img.shields.io/badge/years-1999–2016-orange) ![indicators](https://img.shields.io/badge/indicators-1-purple) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
29
+
30
+ ## TL;DR
31
+
32
+ This dataset contains **84 observations** of `Education Statistics` data across **16 Africa countries**, spanning **1999–2016**, covering **1 distinct indicators**.
33
+
34
+ ## About the source
35
+
36
+ - **Source:** [World Bank — Education Statistics](https://databank.worldbank.org/)
37
+ - **Publisher:** World Bank
38
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
39
+ - **Topic:** Education Statistics
40
+
41
+ ## Geographic coverage
42
+
43
+ 16 Africa countries · top rows shown below, sorted by row count:
44
+
45
+ | Country | Rows | First year | Last year |
46
+ |---------|-----:|-----------:|----------:|
47
+ | `CPV` | 10 | 2003 | 2016 |
48
+ | `MAR` | 9 | 2002 | 2010 |
49
+ | `CMR` | 8 | 2004 | 2012 |
50
+ | `BDI` | 8 | 2002 | 2010 |
51
+ | `GHA` | 8 | 2006 | 2014 |
52
+ | `MWI` | 8 | 2000 | 2008 |
53
+ | `MLI` | 8 | 2003 | 2010 |
54
+ | `BFA` | 8 | 1999 | 2007 |
55
+ | `TCD` | 4 | 2009 | 2012 |
56
+ | `GMB` | 3 | 2008 | 2010 |
57
+ | `BEN` | 3 | 2011 | 2014 |
58
+ | `CIV` | 2 | 2014 | 2015 |
59
+ | `ETH` | 2 | 2011 | 2012 |
60
+ | `GIN` | 1 | 2012 | 2012 |
61
+ | `LBY` | 1 | 2006 | 2006 |
62
+ | ... | _1 more countries_ | | |
63
+
64
+ ## Indicators (sample)
65
+
66
+ - `UIS.XUNIT.GDPCAP.23.FSHH` — Initial household funding per secondary student as a percentage of GDP per capita
67
+
68
+ ## Schema
69
+
70
+ | Column | Type | Description | Example |
71
+ |--------|------|-------------|---------|
72
+ | `indicator_id` | `string` | — | `UIS.XUNIT.GDPCAP.23.FSHH` |
73
+ | `indicator_name` | `string` | — | `Initial household funding per seconda…` |
74
+ | `country_iso3` | `string` | — | `BEN` |
75
+ | `country_name` | `string` | — | `Benin` |
76
+ | `year` | `int64` | — | `2014` |
77
+ | `value` | `float64` | — | `13.95935` |
78
+
79
+ ## Usage
80
+
81
+ ```python
82
+ from datasets import load_dataset
83
+
84
+ ds = load_dataset("electricsheepafrica/africa-worldbank-initial-household-funding-per-secondary-student-as-a-percentage-of-gdp-per-capi")
85
+ df = ds["train"].to_pandas()
86
+ print(df.head())
87
+ ```
88
+
89
+ ### Filter to one country
90
+
91
+ ```python
92
+ kenya = df[df["country_iso3"] == "KEN"]
93
+ ```
94
+
95
+ ### Time-series for a single indicator
96
+
97
+ ```python
98
+ sample = (df[df["indicator_id"] == "UIS.XUNIT.GDPCAP.23.FSHH"]
99
+ .sort_values("year"))
100
+ sample.plot(x="year", y="value", title="UIS.XUNIT.GDPCAP.23.FSHH")
101
+ ```
102
+
103
+ ### Pivot to country × year matrix
104
+
105
+ ```python
106
+ matrix = (df[df["indicator_id"] == "UIS.XUNIT.GDPCAP.23.FSHH"]
107
+ .pivot_table(index="year", columns="country_iso3", values="value"))
108
+ print(matrix.tail())
109
+ ```
110
+
111
+ ## Citation
112
+
113
+ ```bibtex
114
+ @misc{africa_worldbank_initial_household_funding_per_secondary_student_as_a_percentage_of_gdp_per_capi_2016,
115
+ title = {Initial household funding per secondary student as a percentage of GDP per capita | Africa (World Bank — Education Statistics)},
116
+ author = {World Bank},
117
+ year = {2016},
118
+ url = {https://databank.worldbank.org/},
119
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
120
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-worldbank-initial-household-funding-per-secondary-student-as-a-percentage-of-gdp-per-capi}}
121
+ }
122
+ ```
123
+
124
+ ## License
125
+
126
+ Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).
127
+
128
+ Original data © World Bank. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.
129
+
130
+ ## About Electric Sheep
131
+
132
+ 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.
133
+
134
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
135
+
136
+ ---
137
+
138
+ _Provenance: ingested 2026-06-19 via the Electric Sheep pipeline. Source URL: https://databank.worldbank.org/_