Kossisoroyce commited on
Commit
3e96fa2
·
verified ·
1 Parent(s): b65a9df

Add README.md

Browse files
Files changed (1) hide show
  1. README.md +145 -28
README.md CHANGED
@@ -1,32 +1,149 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  dataset_info:
3
- features:
4
- - name: indicator_id
5
- dtype: string
6
- - name: country_id
7
- dtype: string
8
- - name: year
9
- dtype: int64
10
- - name: value
11
- dtype: float64
12
- - name: esa_source
13
- dtype: string
14
- - name: esa_processed
15
- dtype: string
16
  splits:
17
- - name: train
18
- num_bytes: 105466
19
- num_examples: 1736
20
- - name: test
21
- num_bytes: 26295
22
- num_examples: 434
23
- download_size: 30692
24
- dataset_size: 131761
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
+ annotations_creators:
3
+ - no-annotation
4
+ language_creators:
5
+ - found
6
+ language:
7
+ - en
8
+ license: cc-by-4.0
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - 1K<n<10K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - tabular-classification
17
+ - tabular-regression
18
+ task_ids: []
19
+ tags:
20
+ - africa
21
+ - humanitarian
22
+ - hdx
23
+ - electric-sheep-africa
24
+ - demographics
25
+ - education
26
+ - indicators
27
+ - socioeconomics
28
+ - sustainable-development
29
+ - sustainable-development-goals-sdg
30
+ - dji
31
+ pretty_name: "Djibouti - Education Indicators"
32
  dataset_info:
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  splits:
34
+ - name: train
35
+ num_examples: 1736
36
+ - name: test
37
+ num_examples: 434
 
 
 
 
 
 
 
 
 
 
 
38
  ---
39
+
40
+ # Djibouti - Education Indicators
41
+
42
+ **Publisher:** UNESCO · **Source:** [HDX](https://data.humdata.org/dataset/unesco-data-for-djibouti) · **License:** `cc-by-igo` · **Updated:** 2026-03-02
43
+
44
+ ---
45
+
46
+ ## Abstract
47
+
48
+ Education indicators for Djibouti.
49
+
50
+ Contains data from the UNESCO Institute for Statistics [bulk data service](http://data.uis.unesco.org) covering the following categories: SDG 4 Global and Thematic (made 2026 February), Other Policy Relevant Indicators (made 2026 February), Demographic and Socio-economic (made 2026 February)
51
+
52
+ Each row in this dataset represents country-level aggregates. Data was last updated on HDX on 2026-03-02. Geographic scope: **DJI**.
53
+
54
+ *Curated into ML-ready Parquet format by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica).*
55
+
56
+ ---
57
+
58
+ ## Dataset Characteristics
59
+
60
+ | | |
61
+ |---|---|
62
+ | **Domain** | Education |
63
+ | **Unit of observation** | Country-level aggregates |
64
+ | **Rows (total)** | 2,170 |
65
+ | **Columns** | 6 (2 numeric, 4 categorical, 0 datetime) |
66
+ | **Train split** | 1,736 rows |
67
+ | **Test split** | 434 rows |
68
+ | **Geographic scope** | DJI |
69
+ | **Publisher** | UNESCO |
70
+ | **HDX last updated** | 2026-03-02 |
71
+
72
+ ---
73
+
74
+ ## Variables
75
+
76
+ **Geographic** — `country_id` (DJI), `year` (range 1970.0–2025.0).
77
+
78
+ **Outcome / Measurement** — `value` (range 0.0–2742469.0).
79
+
80
+ **Identifier / Metadata** — `indicator_id` (CR.MOD.1.F, CR.MOD.2.M, CR.MOD.1), `esa_source` (HDX), `esa_processed` (2026-04-04).
81
+
82
+ ---
83
+
84
+ ## Quick Start
85
+
86
+ ```python
87
+ from datasets import load_dataset
88
+
89
+ ds = load_dataset("electricsheepafrica/africa-unesco-data-for-djibouti")
90
+ train = ds["train"].to_pandas()
91
+ test = ds["test"].to_pandas()
92
+
93
+ print(train.shape)
94
+ train.head()
95
+ ```
96
+
97
+ ---
98
+
99
+ ## Schema
100
+
101
+ | Column | Type | Null % | Range / Sample Values |
102
+ |---|---|---|---|
103
+ | `indicator_id` | object | 0.0% | CR.MOD.1.F, CR.MOD.2.M, CR.MOD.1 |
104
+ | `country_id` | object | 0.0% | DJI |
105
+ | `year` | int64 | 0.0% | 1970.0 – 2025.0 (mean 2010.8829) |
106
+ | `value` | float64 | 0.0% | 0.0 – 2742469.0 (mean 11997.4449) |
107
+ | `esa_source` | object | 0.0% | HDX |
108
+ | `esa_processed` | object | 0.0% | 2026-04-04 |
109
+
110
+ ---
111
+
112
+ ## Numeric Summary
113
+
114
+ | Column | Min | Max | Mean | Median |
115
+ |---|---|---|---|---|
116
+ | `year` | 1970.0 | 2025.0 | 2010.8829 | 2015.0 |
117
+ | `value` | 0.0 | 2742469.0 | 11997.4449 | 19.5058 |
118
+
119
+ ---
120
+
121
+ ## Curation
122
+
123
+ Raw data was downloaded from HDX via the CKAN API and converted to Parquet. Column names were lowercased and standardised to snake_case. Common missing-value markers (`N/A`, `null`, `none`, `-`, `unknown`, `no data`, `#N/A`) were unified to `NaN`. 2 column(s) with >80% missing values were removed: `magnitude`, `qualifier`. The dataset was split 80/20 into train and test partitions using a fixed random seed (42) and saved as Snappy-compressed Parquet.
124
+
125
+ ---
126
+
127
+ ## Limitations
128
+
129
+ - Data originates from UNESCO and has not been independently validated by ESA.
130
+ - Automated cleaning cannot correct for misreported values, definitional inconsistencies, or sampling bias in the original collection.
131
+ - Refer to the [original HDX dataset page](https://data.humdata.org/dataset/unesco-data-for-djibouti) for the publisher's own methodology notes and caveats.
132
+
133
+ ---
134
+
135
+ ## Citation
136
+
137
+ ```bibtex
138
+ @dataset{hdx_africa_unesco_data_for_djibouti,
139
+ title = {Djibouti - Education Indicators},
140
+ author = {UNESCO},
141
+ year = {2026},
142
+ url = {https://data.humdata.org/dataset/unesco-data-for-djibouti},
143
+ note = {Repackaged for machine learning by Electric Sheep Africa (https://huggingface.co/electricsheepafrica)}
144
+ }
145
+ ```
146
+
147
+ ---
148
+
149
+ *[Electric Sheep Africa](https://huggingface.co/electricsheepafrica) — Africa's ML dataset infrastructure. Lagos, Nigeria.*