File size: 4,907 Bytes
0d9aa7e
d4a5de9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0d9aa7e
d4a5de9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-4.0
language:
- en
task_categories:
- tabular-classification
- tabular-regression
- time-series-forecasting
multilinguality: monolingual
size_categories:
- n<1K
tags:
- tabular
- africa
- world-bank-—-education-statistics
- education-statistics
- world-bank
- worldbank
- development-indicators
- time-series
pretty_name: "Initial household funding per secondary student as a percentage of GDP per capita | Africa (World Bank — Education Statistics)"
---

# Initial household funding per secondary student as a percentage of GDP per capita | Africa (World Bank — Education Statistics)

🌍 **84 observations** · **16 Africa countries** · **1999–2016** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*

![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)

## TL;DR

This dataset contains **84 observations** of `Education Statistics` data across **16 Africa countries**, spanning **1999–2016**, covering **1 distinct indicators**.

## About the source

- **Source:** [World Bank — Education Statistics](https://databank.worldbank.org/)
- **Publisher:** World Bank
- **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
- **Topic:** Education Statistics

## Geographic coverage

16 Africa countries · top rows shown below, sorted by row count:

| Country | Rows | First year | Last year |
|---------|-----:|-----------:|----------:|
| `CPV` | 10 | 2003 | 2016 |
| `MAR` | 9 | 2002 | 2010 |
| `CMR` | 8 | 2004 | 2012 |
| `BDI` | 8 | 2002 | 2010 |
| `GHA` | 8 | 2006 | 2014 |
| `MWI` | 8 | 2000 | 2008 |
| `MLI` | 8 | 2003 | 2010 |
| `BFA` | 8 | 1999 | 2007 |
| `TCD` | 4 | 2009 | 2012 |
| `GMB` | 3 | 2008 | 2010 |
| `BEN` | 3 | 2011 | 2014 |
| `CIV` | 2 | 2014 | 2015 |
| `ETH` | 2 | 2011 | 2012 |
| `GIN` | 1 | 2012 | 2012 |
| `LBY` | 1 | 2006 | 2006 |
| ... | _1 more countries_ | | |

## Indicators (sample)

- `UIS.XUNIT.GDPCAP.23.FSHH` — Initial household funding per secondary student as a percentage of GDP per capita

## Schema

| Column | Type | Description | Example |
|--------|------|-------------|---------|
| `indicator_id` | `string` | — | `UIS.XUNIT.GDPCAP.23.FSHH` |
| `indicator_name` | `string` | — | `Initial household funding per seconda…` |
| `country_iso3` | `string` | — | `BEN` |
| `country_name` | `string` | — | `Benin` |
| `year` | `int64` | — | `2014` |
| `value` | `float64` | — | `13.95935` |

## Usage

```python
from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-worldbank-initial-household-funding-per-secondary-student-as-a-percentage-of-gdp-per-capi")
df = ds["train"].to_pandas()
print(df.head())
```

### Filter to one country

```python
kenya = df[df["country_iso3"] == "KEN"]
```

### Time-series for a single indicator

```python
sample = (df[df["indicator_id"] == "UIS.XUNIT.GDPCAP.23.FSHH"]
          .sort_values("year"))
sample.plot(x="year", y="value", title="UIS.XUNIT.GDPCAP.23.FSHH")
```

### Pivot to country × year matrix

```python
matrix = (df[df["indicator_id"] == "UIS.XUNIT.GDPCAP.23.FSHH"]
          .pivot_table(index="year", columns="country_iso3", values="value"))
print(matrix.tail())
```

## Citation

```bibtex
@misc{africa_worldbank_initial_household_funding_per_secondary_student_as_a_percentage_of_gdp_per_capi_2016,
  title        = {Initial household funding per secondary student as a percentage of GDP per capita | Africa (World Bank — Education Statistics)},
  author       = {World Bank},
  year         = {2016},
  url          = {https://databank.worldbank.org/},
  publisher    = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-worldbank-initial-household-funding-per-secondary-student-as-a-percentage-of-gdp-per-capi}}
}
```

## License

Released under [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/).

Original data © World Bank. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.

## About Electric Sheep

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.

Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)

---

_Provenance: ingested 2026-06-19 via the Electric Sheep pipeline. Source URL: https://databank.worldbank.org/_