Kossiesa commited on
Commit
4986d3b
·
verified ·
1 Parent(s): 8af6979

Add ML-ready official indicator dataset

Browse files
README.md ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-sa-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
+ - mauritius
16
+ - official-statistics
17
+ - open-data
18
+ - ict
19
+ pretty_name: "Small Development Projects under Indian Grant | Africa (Mauritius official open data)"
20
+ ---
21
+
22
+ # Small Development Projects under Indian Grant | Africa (Mauritius official open data)
23
+
24
+ 380 rows - 1 Africa country - 2022-2023 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
25
+
26
+ ![rows](https://img.shields.io/badge/rows-380-blue)
27
+ ![countries](https://img.shields.io/badge/countries-1-green)
28
+ ![years](https://img.shields.io/badge/years-2022-2023-orange)
29
+ ![indicators](https://img.shields.io/badge/indicators-1-purple)
30
+ ![license](https://img.shields.io/badge/license-cc-by-sa-4.0-lightgrey)
31
+
32
+ ## TL;DR
33
+
34
+ This dataset packages one official CSV resource from **Mauritius** as
35
+ ML-ready Parquet. The CSV is the provenance boundary; all usable indicators or
36
+ tabular columns from the source file stay together in this repo.
37
+
38
+ ## About the source
39
+
40
+ - **Source:** [Small Development Projects under Indian Grant](https://data.govmu.org/dataset/small-development-projects-under-indian-grant)
41
+ - **Publisher:** MDPA
42
+ - **Resource:** [Small_Dev_Proj_Indian_Grant.csv](https://data.govmu.org/dataset/b69c62c3-ca41-4497-9f68-3adc741b31c7/resource/88633aad-c280-4ae1-972c-e8f8a0f3878c/download/small_dev_proj_indian_grant.csv)
43
+ - **License:** [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
44
+ - **Packaging mode:** `indicator_long`
45
+
46
+ ## Geographic coverage
47
+
48
+ 1 Africa country:
49
+
50
+ | Country | Rows | First year | Last year | Name |
51
+ |---------|-----:|-----------:|----------:|------|
52
+ | `MUS` | 380 | 2022 | 2023 | `Mauritius` |
53
+
54
+ ## Indicators or Resource Contents
55
+
56
+ - `small-development-projects-under-indian-grant-350b7dc6` - Small Development Projects under Indian Grant
57
+
58
+ ## Schema
59
+
60
+ | Column | Type | Description | Example |
61
+ |--------|------|-------------|---------|
62
+ | `indicator_id` | `object` | Stable indicator identifier. | `small-development-projects-under-indian-grant-350b7dc6` |
63
+ | `indicator_name` | `object` | Human-readable indicator name. | `Small Development Projects under Indian Grant` |
64
+ | `country_iso3` | `object` | ISO3 country code. | `MUS` |
65
+ | `country_name` | `object` | Country name. | `Mauritius` |
66
+ | `year` | `Int64` | Observation year. | `2023` |
67
+ | `value` | `float64` | Numeric observation value. | `12.0` |
68
+ | `unit` | `object` | Measurement unit, when available. | `source_units_unspecified` |
69
+ | `dimension_rev` | `string` | Source dimension. | `Project Value` |
70
+ | `dimension_general_public_services` | `string` | Source dimension. | `District of Port Louis` |
71
+ | `dimension_project_description` | `string` | Source dimension. | `Upgrading of Bienheureux Pere Laval Football Ground at Ste Croix` |
72
+ | `dimension_implementing_agency` | `string` | Source dimension. | `Ministry of Local Government and Disaster Risk Management` |
73
+ | `source_provider` | `object` | Publishing organization. | `MDPA` |
74
+ | `source_dataset` | `object` | Source package title. | `Small Development Projects under Indian Grant` |
75
+ | `source_resource` | `object` | Source resource title. | `Small_Dev_Proj_Indian_Grant.csv` |
76
+ | `source_package_id` | `object` | CKAN package UUID. | `b69c62c3-ca41-4497-9f68-3adc741b31c7` |
77
+ | `source_resource_id` | `object` | CKAN resource UUID. | `88633aad-c280-4ae1-972c-e8f8a0f3878c` |
78
+ | `source_url` | `object` | Original CSV URL. | `https://data.govmu.org/dataset/b69c62c3-ca41-4497-9f68-3adc741b31c7/reso` |
79
+ | `license_id` | `object` | Source license identifier. | `CC-BY-SA-4.0` |
80
+ | `retrieved_at` | `object` | UTC retrieval timestamp. | `2026-07-16T19:23:24Z` |
81
+
82
+ ## Usage
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+
87
+ ds = load_dataset("electricsheepafrica/africa-mauritius-small-development-projects-under-indian-grant-199ea06a")
88
+ df = ds["train"].to_pandas()
89
+ print(df.head())
90
+ ```
91
+
92
+ ### Filter to one country
93
+
94
+ ```python
95
+ sample_country = df[df["country_iso3"] == "MUS"]
96
+ ```
97
+
98
+ ### Work with indicators
99
+
100
+ ```python
101
+ if "indicator_id" in df.columns:
102
+ print(df["indicator_id"].value_counts().head())
103
+ sample = df.sort_values([c for c in ["indicator_id", "year"] if c in df.columns])
104
+ ```
105
+
106
+ ## Citation
107
+
108
+ ```bibtex
109
+ @misc{electric_sheep_africa_africa_mauritius_small_development_projects_under_indian_grant_199ea06a_2023,
110
+ title = {Small Development Projects under Indian Grant | Africa (Mauritius official open data)},
111
+ author = {MDPA},
112
+ year = {2023},
113
+ url = {https://data.govmu.org/dataset/small-development-projects-under-indian-grant},
114
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
115
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-small-development-projects-under-indian-grant-199ea06a}}
116
+ }
117
+ ```
118
+
119
+ ## License
120
+
121
+ Released under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).
122
+
123
+ Original data (c) MDPA. When using this dataset, please cite both the
124
+ original source above and the Electric Sheep Africa repackaging.
125
+
126
+ ## About Electric Sheep
127
+
128
+ Electric Sheep Africa is part of the Electric Sheep mission: a unified,
129
+ ML-ready data layer for Africa on Hugging Face. We pull data from authoritative
130
+ open sources, normalize the schemas, package as Parquet, and publish with
131
+ consistent dataset cards so researchers and developers can use `load_dataset()`
132
+ 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-07-16 via the Electric Sheep pipeline. Source URL:
139
+ https://data.govmu.org/dataset/b69c62c3-ca41-4497-9f68-3adc741b31c7/resource/88633aad-c280-4ae1-972c-e8f8a0f3878c/download/small_dev_proj_indian_grant.csv
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ef938c7c446a90298eb4cbaae1e4dcb327795278d64a35d27c067e7b45c6b804
3
+ size 19320
metadata/source_snapshot.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "columns": [
3
+ "indicator_id",
4
+ "indicator_name",
5
+ "country_iso3",
6
+ "country_name",
7
+ "year",
8
+ "value",
9
+ "unit",
10
+ "dimension_rev",
11
+ "dimension_general_public_services",
12
+ "dimension_project_description",
13
+ "dimension_implementing_agency",
14
+ "source_provider",
15
+ "source_dataset",
16
+ "source_resource",
17
+ "source_package_id",
18
+ "source_resource_id",
19
+ "source_url",
20
+ "license_id",
21
+ "retrieved_at"
22
+ ],
23
+ "generated_at": "2026-07-16T19:51:22Z",
24
+ "indicator_count": 1,
25
+ "mode": "indicator_long",
26
+ "repo_id": "electricsheepafrica/africa-mauritius-small-development-projects-under-indian-grant-199ea06a",
27
+ "rows": 380,
28
+ "source": {
29
+ "api_base_url": "https://data.govmu.org",
30
+ "country_iso3": "MUS",
31
+ "country_name": "Mauritius",
32
+ "group_names": "finance-and-trade",
33
+ "license_id": "CC-BY-SA-4.0",
34
+ "license_title": "CC-BY-SA-4.0",
35
+ "license_url": "",
36
+ "organization_id": "fba989d1-7b9a-4338-901c-978558936a9b",
37
+ "organization_name": "mdpa",
38
+ "organization_title": "MDPA",
39
+ "package_author": "",
40
+ "package_id": "b69c62c3-ca41-4497-9f68-3adc741b31c7",
41
+ "package_maintainer": "Open Data Mauritius",
42
+ "package_metadata_created": "2024-09-30T13:08:08.904372",
43
+ "package_metadata_modified": "2024-09-30T13:08:24.144608",
44
+ "package_name": "small-development-projects-under-indian-grant",
45
+ "package_notes": "<p>Dataset shows the Small Development Projects under Indian Grant by region</p>",
46
+ "package_page_url": "https://data.govmu.org/dataset/small-development-projects-under-indian-grant",
47
+ "package_private": "False",
48
+ "package_state": "active",
49
+ "package_title": "Small Development Projects under Indian Grant",
50
+ "package_version": "",
51
+ "portal_url": "https://data.govmu.org",
52
+ "resource_created": "2024-09-30T13:08:22.766063",
53
+ "resource_datastore_active": "True",
54
+ "resource_description": "",
55
+ "resource_format": "CSV",
56
+ "resource_hash": "",
57
+ "resource_id": "88633aad-c280-4ae1-972c-e8f8a0f3878c",
58
+ "resource_last_modified": "2024-09-30T13:08:22.737880",
59
+ "resource_mimetype": "text/csv",
60
+ "resource_name": "Small_Dev_Proj_Indian_Grant.csv",
61
+ "resource_position": "3",
62
+ "resource_size": "56353",
63
+ "resource_state": "active",
64
+ "resource_url": "https://data.govmu.org/dataset/b69c62c3-ca41-4497-9f68-3adc741b31c7/resource/88633aad-c280-4ae1-972c-e8f8a0f3878c/download/small_dev_proj_indian_grant.csv",
65
+ "retrieved_at": "2026-07-16T17:57:00Z",
66
+ "tag_names": "Budget; Capital Projects; district; grants"
67
+ },
68
+ "year_max": 2023,
69
+ "year_min": 2022
70
+ }