Kossisoroyce commited on
Commit
91a272d
·
verified ·
1 Parent(s): ae34978

Add ML-ready official indicator dataset

Browse files
README.md ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ - africa
14
+ - mauritius
15
+ - official-statistics
16
+ - open-data
17
+ - time-series
18
+ - energy
19
+ - economics
20
+ pretty_name: "Average price of petroleum products and coal used as energy sources 2010 to 2019 - Fuel Oil | Africa (Mauritius official open data)"
21
+ ---
22
+
23
+ # Average price of petroleum products and coal used as energy sources 2010 to 2019 - Fuel Oil | Africa (Mauritius official open data)
24
+
25
+ 10 observations - 1 Africa country - 2010-2019 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
26
+
27
+ ![rows](https://img.shields.io/badge/rows-10-blue)
28
+ ![countries](https://img.shields.io/badge/countries-1-green)
29
+ ![years](https://img.shields.io/badge/years-2010-2019-orange)
30
+ ![indicators](https://img.shields.io/badge/indicators-1-purple)
31
+ ![license](https://img.shields.io/badge/license-cc-by-sa-4.0-lightgrey)
32
+
33
+ ## TL;DR
34
+
35
+ This dataset contains **10 observations** of `Average price of petroleum products and coal used as energy sources 2010 to 2019 - Fuel Oil` data for
36
+ **Mauritius**, spanning **2010-2019**, normalized from an official open
37
+ data resource into ML-ready long-form Parquet.
38
+
39
+ ## About the source
40
+
41
+ - **Source:** [Average price of petroleum products and coal used as energy sources 2010 to 2019](https://data.govmu.org/dataset/average-price-petroleum-products-and-coal-used-energy-sources)
42
+ - **Publisher:** MDPA
43
+ - **Resource:** [Average-price-Rupees-of-petroleum-products-and-coal-used-as-energy-sources.csv](https://data.govmu.org/dataset/12e316b2-8703-4f39-8c12-b173afbaa7cb/resource/7621a953-14cf-43e5-8f8d-799c0562a194/download/average-price-rupees-of-petroleum-products-and-coal-used-as-energy-sources-2010-to-2019.csv)
44
+ - **License:** [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
45
+ - **Original value column:** `Fuel_Oil`
46
+
47
+ ## Geographic coverage
48
+
49
+ 1 Africa country:
50
+
51
+ | Country | Rows | First year | Last year | Name |
52
+ |---------|-----:|-----------:|----------:|------|
53
+ | `MUS` | 10 | 2010 | 2019 | `Mauritius` |
54
+
55
+ ## Indicators
56
+
57
+ - `average-price-of-petroleum-products-and-coal-used-as-energy-sources-2010-1bb0b280` - Average price of petroleum products and coal used as energy sources 2010 to 2019 - Fuel Oil
58
+
59
+ ## Dimensions
60
+
61
+ none
62
+
63
+ ## Schema
64
+
65
+ | Column | Type | Description | Example |
66
+ |--------|------|-------------|---------|
67
+ | `indicator_id` | `object` | Stable indicator slug. | `average-price-of-petroleum-products-and-coal-used-as-energy-sources-2010` |
68
+ | `indicator_name` | `object` | Human-readable indicator name. | `Average price of petroleum products and coal used as energy sources 2010` |
69
+ | `country_iso3` | `object` | ISO3 country code. | `MUS` |
70
+ | `country_name` | `object` | Country name. | `Mauritius` |
71
+ | `year` | `Int64` | Observation year. | `2010` |
72
+ | `value` | `float64` | Numeric observation value. | `16.14` |
73
+ | `unit` | `object` | Measurement unit, when available. | `source_units_unspecified` |
74
+ | `source_provider` | `object` | Publishing organization. | `MDPA` |
75
+ | `source_dataset` | `object` | Source package title. | `Average price of petroleum products and coal used as energy sources 2010` |
76
+ | `source_resource` | `object` | Source resource title. | `Average-price-Rupees-of-petroleum-products-and-coal-used-as-energy-sourc` |
77
+ | `source_package_id` | `object` | - | `12e316b2-8703-4f39-8c12-b173afbaa7cb` |
78
+ | `source_resource_id` | `object` | - | `7621a953-14cf-43e5-8f8d-799c0562a194` |
79
+ | `source_url` | `object` | Original resource URL. | `https://data.govmu.org/dataset/12e316b2-8703-4f39-8c12-b173afbaa7cb/reso` |
80
+ | `license_id` | `object` | Source license identifier. | `CC-BY-SA-4.0` |
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-average-price-of-petroleum-products-and-coal-used-as-energy-sour-1bb0b280")
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="average-price-of-petroleum-products-and-coal-used-as-energy-sources-2010-1bb0b280")
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_average_price_of_petroleum_products_and_coal_used_as_energy_sour_1bb0b2_2019,
119
+ title = {Average price of petroleum products and coal used as energy sources 2010 to 2019 - Fuel Oil | Africa (Mauritius official open data)},
120
+ author = {MDPA},
121
+ year = {2019},
122
+ url = {https://data.govmu.org/dataset/average-price-petroleum-products-and-coal-used-energy-sources},
123
+ publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
124
+ howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-average-price-of-petroleum-products-and-coal-used-as-energy-sour-1bb0b280}}
125
+ }
126
+ ```
127
+
128
+ ## License
129
+
130
+ Released under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/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/12e316b2-8703-4f39-8c12-b173afbaa7cb/resource/7621a953-14cf-43e5-8f8d-799c0562a194/download/average-price-rupees-of-petroleum-products-and-coal-used-as-energy-sources-2010-to-2019.csv
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e210945c1ef351f75e5662394d019b2cbef2fb600dacfeb8606e292354829926
3
+ size 12308
metadata/source_snapshot.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "generated_at": "2026-07-16T18:12:40Z",
3
+ "indicator_name": "Average price of petroleum products and coal used as energy sources 2010 to 2019 - Fuel Oil",
4
+ "repo_id": "electricsheepafrica/africa-mauritius-average-price-of-petroleum-products-and-coal-used-as-energy-sour-1bb0b280",
5
+ "rows": 10,
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-SA-4.0",
12
+ "license_title": "CC-BY-SA-4.0",
13
+ "license_url": "",
14
+ "organization_id": "fba989d1-7b9a-4338-901c-978558936a9b",
15
+ "organization_name": "mdpa",
16
+ "organization_title": "MDPA",
17
+ "package_author": "",
18
+ "package_id": "12e316b2-8703-4f39-8c12-b173afbaa7cb",
19
+ "package_maintainer": "Open Data Mauritius",
20
+ "package_metadata_created": "2024-09-30T13:11:22.642962",
21
+ "package_metadata_modified": "2026-07-16T08:00:39.734598",
22
+ "package_name": "average-price-petroleum-products-and-coal-used-energy-sources",
23
+ "package_notes": "<p>Dataset shows the Average retail price (Rupees) of petroleum products and wholesale price of coal used as energy sources from 2010 to 2019</p>",
24
+ "package_page_url": "https://data.govmu.org/dataset/average-price-petroleum-products-and-coal-used-energy-sources",
25
+ "package_private": "False",
26
+ "package_state": "active",
27
+ "package_title": "Average price of petroleum products and coal used as energy sources 2010 to 2019",
28
+ "package_version": "",
29
+ "portal_url": "https://data.govmu.org",
30
+ "resource_created": "2024-09-30T13:11:23.187561",
31
+ "resource_datastore_active": "True",
32
+ "resource_description": "",
33
+ "resource_format": "CSV",
34
+ "resource_hash": "",
35
+ "resource_id": "7621a953-14cf-43e5-8f8d-799c0562a194",
36
+ "resource_last_modified": "2026-07-16T07:59:37.089244",
37
+ "resource_mimetype": "text/csv",
38
+ "resource_name": "Average-price-Rupees-of-petroleum-products-and-coal-used-as-energy-sources.csv",
39
+ "resource_position": "1",
40
+ "resource_size": "524",
41
+ "resource_state": "active",
42
+ "resource_url": "https://data.govmu.org/dataset/12e316b2-8703-4f39-8c12-b173afbaa7cb/resource/7621a953-14cf-43e5-8f8d-799c0562a194/download/average-price-rupees-of-petroleum-products-and-coal-used-as-energy-sources-2010-to-2019.csv",
43
+ "retrieved_at": "2026-07-16T17:57:00Z",
44
+ "tag_names": "Coal; Diesel; Gasolene; Kerosene; LPG; fuel oil"
45
+ },
46
+ "value_column": "Fuel_Oil",
47
+ "year_max": 2019,
48
+ "year_min": 2010
49
+ }