CollosaAI commited on
Commit
b3a12d3
·
verified ·
1 Parent(s): 6e9df9e

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: 4685
19
- num_examples: 43
20
- - name: test
21
- num_bytes: 1197
22
- num_examples: 11
23
- download_size: 7038
24
- dataset_size: 5882
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-—-gender-statistics
16
+ - gender-statistics
17
+ - world-bank
18
+ - worldbank
19
+ - development-indicators
20
+ - time-series
21
+ pretty_name: "WBL: Legal Framework, Assets, Score (scale 0-100) | Africa (World Bank — Gender Statistics)"
 
 
 
 
 
 
 
 
 
 
22
  ---
23
+
24
+ # WBL: Legal Framework, Assets, Score (scale 0-100) | Africa (World Bank — Gender Statistics)
25
+
26
+ 🌍 **54 observations** · **54 Africa countries** · **2025–2025** · *Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
27
+
28
+ ![rows](https://img.shields.io/badge/rows-54-blue) ![countries](https://img.shields.io/badge/countries-54-green) ![years](https://img.shields.io/badge/years-2025–2025-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 **54 observations** of `Gender Statistics` data across **54 Africa countries**, spanning **2025–2025**, covering **1 distinct indicators**.
33
+
34
+ ## About the source
35
+
36
+ - **Source:** [World Bank — Gender Statistics](https://databank.worldbank.org/)
37
+ - **Publisher:** World Bank
38
+ - **License:** [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
39
+ - **Topic:** Gender Statistics
40
+
41
+ ## Geographic coverage
42
+
43
+ 54 Africa countries · top rows shown below, sorted by row count:
44
+
45
+ | Country | Rows | First year | Last year |
46
+ |---------|-----:|-----------:|----------:|
47
+ | `AGO` | 1 | 2025 | 2025 |
48
+ | `BDI` | 1 | 2025 | 2025 |
49
+ | `BEN` | 1 | 2025 | 2025 |
50
+ | `BFA` | 1 | 2025 | 2025 |
51
+ | `BWA` | 1 | 2025 | 2025 |
52
+ | `CAF` | 1 | 2025 | 2025 |
53
+ | `CIV` | 1 | 2025 | 2025 |
54
+ | `CMR` | 1 | 2025 | 2025 |
55
+ | `COD` | 1 | 2025 | 2025 |
56
+ | `COG` | 1 | 2025 | 2025 |
57
+ | `COM` | 1 | 2025 | 2025 |
58
+ | `CPV` | 1 | 2025 | 2025 |
59
+ | `DJI` | 1 | 2025 | 2025 |
60
+ | `DZA` | 1 | 2025 | 2025 |
61
+ | `EGY` | 1 | 2025 | 2025 |
62
+ | ... | _39 more countries_ | | |
63
+
64
+ ## Indicators (sample)
65
+
66
+ - `GD_WBL_AST_LAW_T` — WBL: Legal Framework, Assets, Score (scale 0-100)
67
+
68
+ ## Schema
69
+
70
+ | Column | Type | Description | Example |
71
+ |--------|------|-------------|---------|
72
+ | `indicator_id` | `string` | — | `GD_WBL_AST_LAW_T` |
73
+ | `indicator_name` | `string` | — | `WBL: Legal Framework, Assets, Score (…` |
74
+ | `country_iso3` | `string` | — | `DZA` |
75
+ | `country_name` | `string` | — | `Algeria` |
76
+ | `year` | `int64` | — | `2025` |
77
+ | `value` | `float64` | — | `25.0` |
78
+
79
+ ## Usage
80
+
81
+ ```python
82
+ from datasets import load_dataset
83
+
84
+ ds = load_dataset("electricsheepafrica/africa-worldbank-wbl-legal-framework-assets-score-scale-0-100-gd-wbl-ast-law-t")
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"] == "GD_WBL_AST_LAW_T"]
99
+ .sort_values("year"))
100
+ sample.plot(x="year", y="value", title="GD_WBL_AST_LAW_T")
101
+ ```
102
+
103
+ ### Pivot to country × year matrix
104
+
105
+ ```python
106
+ matrix = (df[df["indicator_id"] == "GD_WBL_AST_LAW_T"]
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_wbl_legal_framework_assets_score_scale_0_100_gd_wbl_ast_law_t_2025,
115
+ title = {WBL: Legal Framework, Assets, Score (scale 0-100) | Africa (World Bank — Gender Statistics)},
116
+ author = {World Bank},
117
+ year = {2025},
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-wbl-legal-framework-assets-score-scale-0-100-gd-wbl-ast-law-t}}
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-17 via the Electric Sheep pipeline. Source URL: https://databank.worldbank.org/_