interva commited on
Commit
e71adc4
·
verified ·
1 Parent(s): 69ac3a3

Upload dataset folder

Browse files
README.md ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ language:
4
+ - en
5
+ task_categories:
6
+ - tabular-regression
7
+ - time-series-forecasting
8
+ multilinguality: monolingual
9
+ size_categories:
10
+ - n<1K
11
+ tags:
12
+ - tabular
13
+ - csv
14
+ - africa
15
+ - madagascar
16
+ - official-statistics
17
+ - open-data
18
+ configs:
19
+ - config_name: default
20
+ data_files:
21
+ - split: train
22
+ path: data/train-00000-of-00001.parquet
23
+ pretty_name: "Madagascar - Poverty | Africa (Madagascar official open data)"
24
+ ---
25
+
26
+ # Madagascar - Poverty | Africa (Madagascar official open data)
27
+
28
+ 148 rows - 1 Africa country - 1980-2022 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
29
+
30
+ ![rows](https://img.shields.io/badge/rows-148-blue)
31
+ ![countries](https://img.shields.io/badge/countries-1-green)
32
+ ![years](https://img.shields.io/badge/years-1980-2022-orange)
33
+ ![indicators](https://img.shields.io/badge/indicators-1-purple)
34
+ ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
35
+
36
+ ## TL;DR
37
+
38
+ This dataset packages one official `CSV` resource from **Madagascar** as
39
+ ML-ready Parquet. The source file is the provenance boundary; all usable
40
+ indicators or tabular columns from the resource stay together in this repo.
41
+
42
+ ## About the source
43
+
44
+ - **Source:** [Madagascar - Poverty](https://data.humdata.org/dataset/world-bank-poverty-indicators-for-madagascar)
45
+ - **Publisher:** World Bank Group
46
+ - **Resource:** [Poverty Indicators for Madagascar](https://data.humdata.org/dataset/5955f214-af8d-4a36-9daf-44dc90191b63/resource/bd352271-202e-4b85-bb55-f6808e0239bd/download/poverty_mdg.csv)
47
+ - **Format:** `CSV`
48
+ - **License:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
49
+ - **Packaging mode:** `indicator_long`
50
+
51
+ ## Geographic coverage
52
+
53
+ 1 Africa country:
54
+
55
+ | Country | Rows | First year | Last year | Name |
56
+ |---------|-----:|-----------:|----------:|------|
57
+ | `MDG` | 148 | 1980 | 2022 | `Madagascar` |
58
+
59
+ ## Indicators or Resource Contents
60
+
61
+ - `madagascar-poverty-d9377856` - Madagascar - Poverty
62
+
63
+ ## Schema
64
+
65
+ | Column | Type | Description | Example |
66
+ |--------|------|-------------|---------|
67
+ | `indicator_id` | `string` | Stable indicator identifier. | `madagascar-poverty-d9377856` |
68
+ | `indicator_name` | `string` | Human-readable indicator name. | `Madagascar - Poverty` |
69
+ | `country_iso3` | `string` | ISO3 country code. | `MDG` |
70
+ | `country_name` | `string` | Country name. | `Madagascar` |
71
+ | `year` | `Int64` | Observation year. | `2022` |
72
+ | `value` | `float64` | Numeric observation value. | `65.71715` |
73
+ | `unit` | `string` | Measurement unit, when available. | `source_units_unspecified` |
74
+ | `dimension_country_name` | `string` | Source dimension. | `Madagascar` |
75
+ | `dimension_country_iso3` | `string` | Source dimension. | `MDG` |
76
+ | `dimension_indicator_name` | `string` | Source dimension. | `Population living in slums (% of urban population)` |
77
+ | `dimension_indicator_code` | `string` | Source dimension. | `EN.POP.SLUM.UR.ZS` |
78
+ | `source_period_start_year` | `Int64` | First year inferred from source resource metadata. | `1990` |
79
+ | `source_period_end_year` | `Int64` | Last year inferred from source resource metadata. | `1990` |
80
+ | `source_period_label` | `category` | Human-readable period inferred from source resource metadata. | `1990` |
81
+ | `source_provider` | `category` | Publishing organization. | `World Bank Group` |
82
+ | `source_dataset` | `category` | Source package title. | `Madagascar - Poverty` |
83
+ | `source_resource` | `category` | Source resource title. | `Poverty Indicators for Madagascar` |
84
+ | `source_package_id` | `category` | CKAN package UUID. | `5955f214-af8d-4a36-9daf-44dc90191b63` |
85
+ | `source_resource_id` | `category` | CKAN resource UUID. | `bd352271-202e-4b85-bb55-f6808e0239bd` |
86
+ | `source_url` | `category` | Original source resource URL. | `https://data.humdata.org/dataset/5955f214-af8d-4a36-9daf-44dc90191b63/re` |
87
+ | `license_id` | `category` | Source license identifier. | `cc-by` |
88
+ | `retrieved_at` | `category` | UTC retrieval timestamp. | `2026-08-30T05:38:32Z` |
89
+
90
+ ## Usage
91
+
92
+ ```python
93
+ from datasets import load_dataset
94
+
95
+ ds = load_dataset("electricsheepafrica/africa-madagascar-madagascar-poverty-e77716d6")
96
+ df = ds["train"].to_pandas()
97
+ print(df.head())
98
+ ```
99
+
100
+ ### Filter to one country
101
+
102
+ ```python
103
+ sample_country = df[df["country_iso3"] == "MDG"]
104
+ ```
105
+
106
+ ### Work with indicators
107
+
108
+ ```python
109
+ if "indicator_id" in df.columns:
110
+ print(df["indicator_id"].value_counts().head())
111
+ sample = df.sort_values([c for c in ["indicator_id", "year"] if c in df.columns])
112
+ ```
113
+
114
+ ## Citation
115
+
116
+ ```bibtex
117
+ @misc{electric_sheep_africa_africa_madagascar_madagascar_poverty_e77716d6_2022,
118
+ title = {Madagascar - Poverty | Africa (Madagascar official open data)},
119
+ author = {World Bank Group},
120
+ year = {2022},
121
+ url = {https://data.humdata.org/dataset/world-bank-poverty-indicators-for-madagascar},
122
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
123
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-madagascar-madagascar-poverty-e77716d6}}
124
+ }
125
+ ```
126
+
127
+ ## License
128
+
129
+ Released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
130
+
131
+ Original data (c) World Bank Group. When using this dataset, please cite both the
132
+ original source above and the Electric Sheep Africa repackaging.
133
+
134
+ ## About Electric Sheep
135
+
136
+ Electric Sheep Africa is part of the Electric Sheep mission: a unified,
137
+ ML-ready data layer for Africa on Hugging Face. We pull data from authoritative
138
+ open sources, normalize the schemas, package as Parquet, and publish with
139
+ consistent dataset cards so researchers and developers can use `load_dataset()`
140
+ to start working in seconds.
141
+
142
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
143
+
144
+ ---
145
+
146
+ Provenance: ingested 2026-08-30 via the Electric Sheep pipeline. Source URL:
147
+ https://data.humdata.org/dataset/5955f214-af8d-4a36-9daf-44dc90191b63/resource/bd352271-202e-4b85-bb55-f6808e0239bd/download/poverty_mdg.csv
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3c221f3b59706ab00c32ad67bd4f5909abcbbfa3aa91e47b6ea62cc8b61ddb24
3
+ size 18111
metadata/source_snapshot.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "columns": [
3
+ "indicator_id",
4
+ "indicator_name",
5
+ "country_iso3",
6
+ "country_name",
7
+ "year",
8
+ "value",
9
+ "unit",
10
+ "dimension_country_name",
11
+ "dimension_country_iso3",
12
+ "dimension_indicator_name",
13
+ "dimension_indicator_code",
14
+ "source_period_start_year",
15
+ "source_period_end_year",
16
+ "source_period_label",
17
+ "source_provider",
18
+ "source_dataset",
19
+ "source_resource",
20
+ "source_package_id",
21
+ "source_resource_id",
22
+ "source_url",
23
+ "license_id",
24
+ "retrieved_at"
25
+ ],
26
+ "generated_at": "2026-08-30T05:56:44Z",
27
+ "indicator_count": 1,
28
+ "mode": "indicator_long",
29
+ "repo_id": "electricsheepafrica/africa-madagascar-madagascar-poverty-e77716d6",
30
+ "rows": 148,
31
+ "source": {
32
+ "api_base_url": "https://data.humdata.org/api/3/action",
33
+ "country_iso3": "MDG",
34
+ "country_name": "Madagascar",
35
+ "group_names": "mdg",
36
+ "license_id": "cc-by",
37
+ "license_title": "Creative Commons Attribution International (CC BY)",
38
+ "license_url": "http://www.opendefinition.org/licenses/cc-by",
39
+ "organization_name": "world-bank-group",
40
+ "organization_title": "World Bank Group",
41
+ "package_id": "5955f214-af8d-4a36-9daf-44dc90191b63",
42
+ "package_name": "world-bank-poverty-indicators-for-madagascar",
43
+ "package_notes": "Contains data from the World Bank's [data portal](http://data.worldbank.org/). There is also a [consolidated country dataset](https://data.humdata.org/dataset/world-bank-combined-indicators-for-madagascar) on HDX. For countries with an active poverty monitoring program, the World Bank—in collaboration with national institutions, other development agencies, and civil society—regularly conducts analytical work to assess the extent and causes of poverty and inequality, examine the impact of growth and public policy, and review household survey data and measurement methods. Data here includes poverty and inequality measures generated from analytical reports, from national poverty monitoring programs, and from the World Bank’s Development Research Group which has been producing internationally comparable and global poverty estimates and lines since 1990.",
44
+ "package_page_url": "https://data.humdata.org/dataset/world-bank-poverty-indicators-for-madagascar",
45
+ "package_title": "Madagascar - Poverty",
46
+ "portal_url": "https://data.humdata.org",
47
+ "resource_description": "csv containing Poverty indicators Indicators: Gini index, Income share held by fourth 20%, Income share held by highest 10%, Income share held by highest 20%, Income share held by lowest 10%, Income share held by lowest 20%, Income share held by second 20%, Income share held by third 20%, Population living in slums, Poverty gap at $3.00 a day, Poverty gap at $4.20 a day, Poverty gap at $8.30 a day, Poverty headcount ratio at $3.00 a day, Poverty headcount ratio at $4.20 a day, Poverty headcount ratio at $8.30 a day, Poverty headcount ratio at national poverty lines, Proportion of people living below 50 percent of median income",
48
+ "resource_format": "CSV",
49
+ "resource_id": "bd352271-202e-4b85-bb55-f6808e0239bd",
50
+ "resource_last_modified": "2026-04-28T08:27:12.576595",
51
+ "resource_name": "Poverty Indicators for Madagascar",
52
+ "resource_position": "0",
53
+ "resource_url": "https://data.humdata.org/dataset/5955f214-af8d-4a36-9daf-44dc90191b63/resource/bd352271-202e-4b85-bb55-f6808e0239bd/download/poverty_mdg.csv",
54
+ "tag_names": "indicators,poverty"
55
+ },
56
+ "year_max": 2022,
57
+ "year_min": 1980
58
+ }