Kossisoroyce commited on
Commit
b8e9c5e
·
verified ·
1 Parent(s): fb6d49c

Add ML-ready official indicator dataset

Browse files
README.md ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - economics
20
+ pretty_name: "Imports value of energy sources 2021 - 2024 - Fuel Wood | Africa (Mauritius official open data)"
21
+ ---
22
+
23
+ # Imports value of energy sources 2021 - 2024 - Fuel Wood | Africa (Mauritius official open data)
24
+
25
+ 3 observations - 1 Africa country - 2022-2024 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
26
+
27
+ ![rows](https://img.shields.io/badge/rows-3-blue)
28
+ ![countries](https://img.shields.io/badge/countries-1-green)
29
+ ![years](https://img.shields.io/badge/years-2022-2024-orange)
30
+ ![indicators](https://img.shields.io/badge/indicators-1-purple)
31
+ ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey)
32
+
33
+ ## TL;DR
34
+
35
+ This dataset contains **3 observations** of `Imports value of energy sources 2021 - 2024 - Fuel Wood` data for
36
+ **Mauritius**, spanning **2022-2024**, normalized from an official open
37
+ data resource into ML-ready long-form Parquet.
38
+
39
+ ## About the source
40
+
41
+ - **Source:** [Imports value of energy sources 2021 - 2024](https://data.govmu.org/dataset/imports-value-of-energy-sources-2021-2024)
42
+ - **Publisher:** MDPA
43
+ - **Resource:** [Imports value of energy sources 2021 - 2024.csv](https://data.govmu.org/dataset/3b271e76-0a91-437e-acfa-4997b0707b95/resource/0acca499-fa33-4354-8a7f-fdc1bfdf0062/download/imports-value-of-energy-sources-2021-2024.csv)
44
+ - **License:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
45
+ - **Original value column:** `Fuel Wood`
46
+
47
+ ## Geographic coverage
48
+
49
+ 1 Africa country:
50
+
51
+ | Country | Rows | First year | Last year | Name |
52
+ |---------|-----:|-----------:|----------:|------|
53
+ | `MUS` | 3 | 2022 | 2024 | `Mauritius` |
54
+
55
+ ## Indicators
56
+
57
+ - `imports-value-of-energy-sources-2021-2024-fuel-wood-d6980b89` - Imports value of energy sources 2021 - 2024 - Fuel Wood
58
+
59
+ ## Dimensions
60
+
61
+ none
62
+
63
+ ## Schema
64
+
65
+ | Column | Type | Description | Example |
66
+ |--------|------|-------------|---------|
67
+ | `indicator_id` | `object` | Stable indicator slug. | `imports-value-of-energy-sources-2021-2024-fuel-wood-d6980b89` |
68
+ | `indicator_name` | `object` | Human-readable indicator name. | `Imports value of energy sources 2021 - 2024 - Fuel Wood` |
69
+ | `country_iso3` | `object` | ISO3 country code. | `MUS` |
70
+ | `country_name` | `object` | Country name. | `Mauritius` |
71
+ | `year` | `Int64` | Observation year. | `2022` |
72
+ | `value` | `float64` | Numeric observation value. | `1078.0` |
73
+ | `unit` | `object` | Measurement unit, when available. | `source_units_unspecified` |
74
+ | `source_provider` | `object` | Publishing organization. | `MDPA` |
75
+ | `source_dataset` | `object` | Source package title. | `Imports value of energy sources 2021 - 2024` |
76
+ | `source_resource` | `object` | Source resource title. | `Imports value of energy sources 2021 - 2024.csv` |
77
+ | `source_package_id` | `object` | - | `3b271e76-0a91-437e-acfa-4997b0707b95` |
78
+ | `source_resource_id` | `object` | - | `0acca499-fa33-4354-8a7f-fdc1bfdf0062` |
79
+ | `source_url` | `object` | Original resource URL. | `https://data.govmu.org/dataset/3b271e76-0a91-437e-acfa-4997b0707b95/reso` |
80
+ | `license_id` | `object` | Source license identifier. | `cc-by` |
81
+ | `retrieved_at` | `object` | UTC source retrieval timestamp. | `2026-07-16T18:12:36Z` |
82
+
83
+ ## Usage
84
+
85
+ ```python
86
+ from datasets import load_dataset
87
+
88
+ ds = load_dataset("electricsheepafrica/africa-mauritius-imports-value-of-energy-sources-2021-2024-fuel-wood-d6980b89")
89
+ df = ds["train"].to_pandas()
90
+ print(df.head())
91
+ ```
92
+
93
+ ### Filter to one country
94
+
95
+ ```python
96
+ sample_country = df[df["country_iso3"] == "MUS"]
97
+ ```
98
+
99
+ ### Time-series
100
+
101
+ ```python
102
+ sample = df.sort_values("year")
103
+ sample.plot(x="year", y="value", title="imports-value-of-energy-sources-2021-2024-fuel-wood-d6980b89")
104
+ ```
105
+
106
+ ### Pivot by dimensions
107
+
108
+ ```python
109
+ dimension_cols = [c for c in df.columns if c.startswith("dimension_")]
110
+ if dimension_cols:
111
+ matrix = df.pivot_table(index="year", columns=dimension_cols, values="value")
112
+ print(matrix.tail())
113
+ ```
114
+
115
+ ## Citation
116
+
117
+ ```bibtex
118
+ @misc{electric_sheep_africa_africa_mauritius_imports_value_of_energy_sources_2021_2024_fuel_wood_d6980b89_2024,
119
+ title = {Imports value of energy sources 2021 - 2024 - Fuel Wood | Africa (Mauritius official open data)},
120
+ author = {MDPA},
121
+ year = {2024},
122
+ url = {https://data.govmu.org/dataset/imports-value-of-energy-sources-2021-2024},
123
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
124
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-imports-value-of-energy-sources-2021-2024-fuel-wood-d6980b89}}
125
+ }
126
+ ```
127
+
128
+ ## License
129
+
130
+ Released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
131
+
132
+ Original data (c) MDPA. When using this dataset, please cite both the
133
+ original source above and the Electric Sheep Africa repackaging.
134
+
135
+ ## About Electric Sheep
136
+
137
+ Electric Sheep Africa is part of the Electric Sheep mission: a unified,
138
+ ML-ready data layer for Africa on Hugging Face. We pull data from authoritative
139
+ open sources, normalize the schemas, package as Parquet, and publish with
140
+ consistent dataset cards so researchers and developers can use `load_dataset()`
141
+ to start working in seconds.
142
+
143
+ Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
144
+
145
+ ---
146
+
147
+ Provenance: ingested 2026-07-16 via the Electric Sheep pipeline. Source URL:
148
+ https://data.govmu.org/dataset/3b271e76-0a91-437e-acfa-4997b0707b95/resource/0acca499-fa33-4354-8a7f-fdc1bfdf0062/download/imports-value-of-energy-sources-2021-2024.csv
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8274d094b15cbf273411ac16baa33e6206f0118527d3a6be2481b9821e527494
3
+ size 11382
metadata/source_snapshot.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "generated_at": "2026-07-16T18:12:42Z",
3
+ "indicator_name": "Imports value of energy sources 2021 - 2024 - Fuel Wood",
4
+ "repo_id": "electricsheepafrica/africa-mauritius-imports-value-of-energy-sources-2021-2024-fuel-wood-d6980b89",
5
+ "rows": 3,
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": "3b271e76-0a91-437e-acfa-4997b0707b95",
19
+ "package_maintainer": "",
20
+ "package_metadata_created": "2026-07-14T09:43:32.773343",
21
+ "package_metadata_modified": "2026-07-14T09:44:48.384358",
22
+ "package_name": "imports-value-of-energy-sources-2021-2024",
23
+ "package_notes": "Dataset shows the Imports value of energy sources from 2021 to 2024",
24
+ "package_page_url": "https://data.govmu.org/dataset/imports-value-of-energy-sources-2021-2024",
25
+ "package_private": "False",
26
+ "package_state": "active",
27
+ "package_title": "Imports value of energy sources 2021 - 2024",
28
+ "package_version": "",
29
+ "portal_url": "https://data.govmu.org",
30
+ "resource_created": "2026-07-14T09:43:58.772498",
31
+ "resource_datastore_active": "False",
32
+ "resource_description": "",
33
+ "resource_format": "CSV",
34
+ "resource_hash": "",
35
+ "resource_id": "0acca499-fa33-4354-8a7f-fdc1bfdf0062",
36
+ "resource_last_modified": "2026-07-14T09:43:58.710659",
37
+ "resource_mimetype": "text/csv",
38
+ "resource_name": "Imports value of energy sources 2021 - 2024.csv",
39
+ "resource_position": "1",
40
+ "resource_size": "474",
41
+ "resource_state": "active",
42
+ "resource_url": "https://data.govmu.org/dataset/3b271e76-0a91-437e-acfa-4997b0707b95/resource/0acca499-fa33-4354-8a7f-fdc1bfdf0062/download/imports-value-of-energy-sources-2021-2024.csv",
43
+ "retrieved_at": "2026-07-16T17:57:00Z",
44
+ "tag_names": "Charcoal; Coal; Diesel Oil; Fuel Wood; Fuel oil; Gasolene; Jet fuel; Kerosene; LPG"
45
+ },
46
+ "value_column": "Fuel Wood",
47
+ "year_max": 2024,
48
+ "year_min": 2022
49
+ }