Kossisoroyce commited on
Commit
9690985
·
verified ·
1 Parent(s): efa7c96

Add ML-ready official indicator dataset

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
+ - africa
14
+ - mauritius
15
+ - official-statistics
16
+ - open-data
17
+ - time-series
18
+ - energy
19
+ pretty_name: "Main Energy indicators, Republic of Mauritius, 2018-2024 - Percentage of renewables from total electricity generated | Africa (Mauritius official open data)"
20
+ ---
21
+
22
+ # Main Energy indicators, Republic of Mauritius, 2018-2024 - Percentage of renewables from total electricity generated | Africa (Mauritius official open data)
23
+
24
+ 7 observations - 1 Africa country - 2018-2024 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
25
+
26
+ ![rows](https://img.shields.io/badge/rows-7-blue)
27
+ ![countries](https://img.shields.io/badge/countries-1-green)
28
+ ![years](https://img.shields.io/badge/years-2018-2024-orange)
29
+ ![indicators](https://img.shields.io/badge/indicators-1-purple)
30
+ ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
31
+
32
+ ## TL;DR
33
+
34
+ This dataset contains **7 observations** of `Main Energy indicators, Republic of Mauritius, 2018-2024 - Percentage of renewables from total electricity generated` data for
35
+ **Mauritius**, spanning **2018-2024**, normalized from an official open
36
+ data resource into ML-ready long-form Parquet.
37
+
38
+ ## About the source
39
+
40
+ - **Source:** [Main Energy indicators, Republic of Mauritius, 2018-2024](https://data.govmu.org/dataset/main-energy-indicators-republic-of-mauritius-2018-2024)
41
+ - **Publisher:** MDPA
42
+ - **Resource:** [main_energy_indicators-republic-of-mauritius-2018-2024v.csv](https://data.govmu.org/dataset/e398d0b3-75e4-424c-89cb-cb2caa281e94/resource/0f445a42-d734-4293-a8ff-724efff02c29/download/main_energy_indicators-republic-of-mauritius-2018-2024v.csv)
43
+ - **License:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
44
+ - **Original value column:** `Percentage_of_renewables_from_total_electricity_generated`
45
+
46
+ ## Geographic coverage
47
+
48
+ 1 Africa country:
49
+
50
+ | Country | Rows | First year | Last year | Name |
51
+ |---------|-----:|-----------:|----------:|------|
52
+ | `MUS` | 7 | 2018 | 2024 | `Mauritius` |
53
+
54
+ ## Indicators
55
+
56
+ - `main-energy-indicators-republic-of-mauritius-2018-2024-percentage-of-ren-c0a52054` - Main Energy indicators, Republic of Mauritius, 2018-2024 - Percentage of renewables from total electricity generated
57
+
58
+ ## Dimensions
59
+
60
+ none
61
+
62
+ ## Schema
63
+
64
+ | Column | Type | Description | Example |
65
+ |--------|------|-------------|---------|
66
+ | `indicator_id` | `object` | Stable indicator slug. | `main-energy-indicators-republic-of-mauritius-2018-2024-percentage-of-ren` |
67
+ | `indicator_name` | `object` | Human-readable indicator name. | `Main Energy indicators, Republic of Mauritius, 2018-2024 - Percentage of` |
68
+ | `country_iso3` | `object` | ISO3 country code. | `MUS` |
69
+ | `country_name` | `object` | Country name. | `Mauritius` |
70
+ | `year` | `Int64` | Observation year. | `2018` |
71
+ | `value` | `float64` | Numeric observation value. | `20.7` |
72
+ | `unit` | `object` | Measurement unit, when available. | `source_units_unspecified` |
73
+ | `source_provider` | `object` | Publishing organization. | `MDPA` |
74
+ | `source_dataset` | `object` | Source package title. | `Main Energy indicators, Republic of Mauritius, 2018-2024` |
75
+ | `source_resource` | `object` | Source resource title. | `main_energy_indicators-republic-of-mauritius-2018-2024v.csv` |
76
+ | `source_package_id` | `object` | - | `e398d0b3-75e4-424c-89cb-cb2caa281e94` |
77
+ | `source_resource_id` | `object` | - | `0f445a42-d734-4293-a8ff-724efff02c29` |
78
+ | `source_url` | `object` | Original resource URL. | `https://data.govmu.org/dataset/e398d0b3-75e4-424c-89cb-cb2caa281e94/reso` |
79
+ | `license_id` | `object` | Source license identifier. | `cc-by` |
80
+ | `retrieved_at` | `object` | UTC source retrieval timestamp. | `2026-07-16T18:12:36Z` |
81
+
82
+ ## Usage
83
+
84
+ ```python
85
+ from datasets import load_dataset
86
+
87
+ ds = load_dataset("electricsheepafrica/africa-mauritius-main-energy-indicators-republic-of-mauritius-2018-2024-percentag-c0a52054")
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
+ ### Time-series
99
+
100
+ ```python
101
+ sample = df.sort_values("year")
102
+ sample.plot(x="year", y="value", title="main-energy-indicators-republic-of-mauritius-2018-2024-percentage-of-ren-c0a52054")
103
+ ```
104
+
105
+ ### Pivot by dimensions
106
+
107
+ ```python
108
+ dimension_cols = [c for c in df.columns if c.startswith("dimension_")]
109
+ if dimension_cols:
110
+ matrix = df.pivot_table(index="year", columns=dimension_cols, values="value")
111
+ print(matrix.tail())
112
+ ```
113
+
114
+ ## Citation
115
+
116
+ ```bibtex
117
+ @misc{electric_sheep_africa_africa_mauritius_main_energy_indicators_republic_of_mauritius_2018_2024_percentag_c0a520_2024,
118
+ title = {Main Energy indicators, Republic of Mauritius, 2018-2024 - Percentage of renewables from total electricity generated | Africa (Mauritius official open data)},
119
+ author = {MDPA},
120
+ year = {2024},
121
+ url = {https://data.govmu.org/dataset/main-energy-indicators-republic-of-mauritius-2018-2024},
122
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
123
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-main-energy-indicators-republic-of-mauritius-2018-2024-percentag-c0a52054}}
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) MDPA. 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-07-16 via the Electric Sheep pipeline. Source URL:
147
+ https://data.govmu.org/dataset/e398d0b3-75e4-424c-89cb-cb2caa281e94/resource/0f445a42-d734-4293-a8ff-724efff02c29/download/main_energy_indicators-republic-of-mauritius-2018-2024v.csv
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2af686e57a2db19d8ecd0622695db6adc67aac25ab153af9e0ccb49889d256a
3
+ size 11991
metadata/source_snapshot.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "generated_at": "2026-07-16T18:12:45Z",
3
+ "indicator_name": "Main Energy indicators, Republic of Mauritius, 2018-2024 - Percentage of renewables from total electricity generated",
4
+ "repo_id": "electricsheepafrica/africa-mauritius-main-energy-indicators-republic-of-mauritius-2018-2024-percentag-c0a52054",
5
+ "rows": 7,
6
+ "source": {
7
+ "api_base_url": "https://data.govmu.org",
8
+ "country_iso3": "MUS",
9
+ "country_name": "Mauritius",
10
+ "group_names": "environment-and-natural-resources",
11
+ "license_id": "cc-by",
12
+ "license_title": "Creative Commons Attribution",
13
+ "license_url": "http://www.opendefinition.org/licenses/cc-by",
14
+ "organization_id": "fba989d1-7b9a-4338-901c-978558936a9b",
15
+ "organization_name": "mdpa",
16
+ "organization_title": "MDPA",
17
+ "package_author": "",
18
+ "package_id": "e398d0b3-75e4-424c-89cb-cb2caa281e94",
19
+ "package_maintainer": "",
20
+ "package_metadata_created": "2026-07-08T09:21:41.529060",
21
+ "package_metadata_modified": "2026-07-08T09:22:59.283858",
22
+ "package_name": "main-energy-indicators-republic-of-mauritius-2018-2024",
23
+ "package_notes": "Dataset shows the main Energy indicators, Republic of Mauritius, 2018 to 2024",
24
+ "package_page_url": "https://data.govmu.org/dataset/main-energy-indicators-republic-of-mauritius-2018-2024",
25
+ "package_private": "False",
26
+ "package_state": "active",
27
+ "package_title": "Main Energy indicators, Republic of Mauritius, 2018-2024",
28
+ "package_version": "",
29
+ "portal_url": "https://data.govmu.org",
30
+ "resource_created": "2026-07-08T09:22:14.568975",
31
+ "resource_datastore_active": "False",
32
+ "resource_description": "",
33
+ "resource_format": "CSV",
34
+ "resource_hash": "",
35
+ "resource_id": "0f445a42-d734-4293-a8ff-724efff02c29",
36
+ "resource_last_modified": "2026-07-08T09:22:14.524442",
37
+ "resource_mimetype": "text/csv",
38
+ "resource_name": "main_energy_indicators-republic-of-mauritius-2018-2024v.csv",
39
+ "resource_position": "1",
40
+ "resource_size": "768",
41
+ "resource_state": "active",
42
+ "resource_url": "https://data.govmu.org/dataset/e398d0b3-75e4-424c-89cb-cb2caa281e94/resource/0f445a42-d734-4293-a8ff-724efff02c29/download/main_energy_indicators-republic-of-mauritius-2018-2024v.csv",
43
+ "retrieved_at": "2026-07-16T17:57:00Z",
44
+ "tag_names": "consumption; electricity; generated; renewable energy"
45
+ },
46
+ "value_column": "Percentage_of_renewables_from_total_electricity_generated",
47
+ "year_max": 2024,
48
+ "year_min": 2018
49
+ }