Kossisoroyce commited on
Commit
32e6bd4
·
verified ·
1 Parent(s): 47ddaed

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +47 -36
README.md CHANGED
@@ -1,38 +1,49 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: indicator_id
5
- dtype: string
6
- - name: indicator_name
7
- dtype: string
8
- - name: country_iso2
9
- dtype: string
10
- - name: country_iso3
11
- dtype: string
12
- - name: country_name
13
- dtype: string
14
- - name: year
15
- dtype: int64
16
- - name: value
17
- dtype: float64
18
- - name: unit
19
- dtype: string
20
- - name: obs_status
21
- dtype: string
22
- splits:
23
- - name: train
24
- num_bytes: 48514
25
- num_examples: 397
26
- - name: test
27
- num_bytes: 10728
28
- num_examples: 100
29
- download_size: 13693
30
- dataset_size: 59242
31
- configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: data/train-*
36
- - split: test
37
- path: data/test-*
38
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - asia
7
+ - world-bank
8
+ - wdi
9
+ - millenium-development-goals
10
+ - tabular
11
+ pretty_name: "Millenium development goals — Asia (World Bank WDI)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  ---
13
+
14
+ # Millenium development goals — Asia
15
+
16
+ **Source:** [World Bank World Development Indicators](https://databank.worldbank.org/source/world-development-indicators)
17
+ **Topic:** Millenium development goals
18
+ **Coverage:** 2 Asia countries · 1960–2024 · 497 rows
19
+ **Indicators:** 5
20
+
21
+ ## About
22
+
23
+ The World Bank's World Development Indicators (WDI) is the most comprehensive
24
+ source of global development data. This dataset contains the **Millenium development goals**
25
+ topic filtered to all available Asia countries (ISO3-coded), repackaged
26
+ in ML-ready Parquet by [Electric Sheep Asia](https://huggingface.co/electricsheepasia).
27
+
28
+ ## Schema
29
+
30
+ - `indicator_id` — WDI indicator code (e.g., `SP.POP.TOTL`)
31
+ - `indicator_name` — human-readable indicator name
32
+ - `country_iso2` / `country_iso3` / `country_name` — geography
33
+ - `year` — observation year
34
+ - `value` — indicator value
35
+ - `unit` — units (often empty in WB data)
36
+ - `obs_status` — observation status flags
37
+
38
+ ## Usage
39
+
40
+ ```python
41
+ from datasets import load_dataset
42
+ ds = load_dataset("electricsheepasia/asia-worldbank-millenium-development-goals")
43
+ df = ds["train"].to_pandas()
44
+ ```
45
+
46
+ ## License
47
+
48
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) — World Bank open data
49
+ with attribution. Cite: World Bank, World Development Indicators.