Dataset Viewer
Auto-converted to Parquet Duplicate
indicator_id
stringclasses
1 value
indicator_name
stringclasses
1 value
country_iso3
stringclasses
1 value
country_name
stringclasses
1 value
year
int64
2.02k
2.02k
value
float64
14.6M
30M
unit
stringclasses
1 value
source_provider
stringclasses
1 value
source_dataset
stringclasses
1 value
source_resource
stringclasses
1 value
source_package_id
stringclasses
1 value
source_resource_id
stringclasses
1 value
source_url
stringclasses
1 value
license_id
stringclasses
1 value
retrieved_at
stringdate
2026-07-16 18:12:36
2026-07-16 18:12:36
imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210
Imports value of energy sources 2021 - 2024 - Fuel oil
MUS
Mauritius
2,021
14,598,964
source_units_unspecified
MDPA
Imports value of energy sources 2021 - 2024
Imports value of energy sources 2021 - 2024.csv
3b271e76-0a91-437e-acfa-4997b0707b95
0acca499-fa33-4354-8a7f-fdc1bfdf0062
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
cc-by
2026-07-16T18:12:36Z
imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210
Imports value of energy sources 2021 - 2024 - Fuel oil
MUS
Mauritius
2,022
22,427,679
source_units_unspecified
MDPA
Imports value of energy sources 2021 - 2024
Imports value of energy sources 2021 - 2024.csv
3b271e76-0a91-437e-acfa-4997b0707b95
0acca499-fa33-4354-8a7f-fdc1bfdf0062
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
cc-by
2026-07-16T18:12:36Z
imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210
Imports value of energy sources 2021 - 2024 - Fuel oil
MUS
Mauritius
2,023
18,495,953
source_units_unspecified
MDPA
Imports value of energy sources 2021 - 2024
Imports value of energy sources 2021 - 2024.csv
3b271e76-0a91-437e-acfa-4997b0707b95
0acca499-fa33-4354-8a7f-fdc1bfdf0062
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
cc-by
2026-07-16T18:12:36Z
imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210
Imports value of energy sources 2021 - 2024 - Fuel oil
MUS
Mauritius
2,024
29,990,526
source_units_unspecified
MDPA
Imports value of energy sources 2021 - 2024
Imports value of energy sources 2021 - 2024.csv
3b271e76-0a91-437e-acfa-4997b0707b95
0acca499-fa33-4354-8a7f-fdc1bfdf0062
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
cc-by
2026-07-16T18:12:36Z

Imports value of energy sources 2021 - 2024 - Fuel oil | Africa (Mauritius official open data)

4 observations - 1 Africa country - 2021-2024 - Repackaged by Electric Sheep Africa

rows countries years indicators license

TL;DR

This dataset contains 4 observations of Imports value of energy sources 2021 - 2024 - Fuel oil data for Mauritius, spanning 2021-2024, normalized from an official open data resource into ML-ready long-form Parquet.

About the source

Geographic coverage

1 Africa country:

Country Rows First year Last year Name
MUS 4 2021 2024 Mauritius

Indicators

  • imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210 - Imports value of energy sources 2021 - 2024 - Fuel oil

Dimensions

none

Schema

Column Type Description Example
indicator_id object Stable indicator slug. imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210
indicator_name object Human-readable indicator name. Imports value of energy sources 2021 - 2024 - Fuel oil
country_iso3 object ISO3 country code. MUS
country_name object Country name. Mauritius
year Int64 Observation year. 2021
value float64 Numeric observation value. 14598964.0
unit object Measurement unit, when available. source_units_unspecified
source_provider object Publishing organization. MDPA
source_dataset object Source package title. Imports value of energy sources 2021 - 2024
source_resource object Source resource title. Imports value of energy sources 2021 - 2024.csv
source_package_id object - 3b271e76-0a91-437e-acfa-4997b0707b95
source_resource_id object - 0acca499-fa33-4354-8a7f-fdc1bfdf0062
source_url object Original resource URL. https://data.govmu.org/dataset/3b271e76-0a91-437e-acfa-4997b0707b95/reso
license_id object Source license identifier. cc-by
retrieved_at object UTC source retrieval timestamp. 2026-07-16T18:12:36Z

Usage

from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-mauritius-imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210")
df = ds["train"].to_pandas()
print(df.head())

Filter to one country

sample_country = df[df["country_iso3"] == "MUS"]

Time-series

sample = df.sort_values("year")
sample.plot(x="year", y="value", title="imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210")

Pivot by dimensions

dimension_cols = [c for c in df.columns if c.startswith("dimension_")]
if dimension_cols:
    matrix = df.pivot_table(index="year", columns=dimension_cols, values="value")
    print(matrix.tail())

Citation

@misc{electric_sheep_africa_africa_mauritius_imports_value_of_energy_sources_2021_2024_fuel_oil_d4ca2210_2024,
  title        = {Imports value of energy sources 2021 - 2024 - Fuel oil | Africa (Mauritius official open data)},
  author       = {MDPA},
  year         = {2024},
  url          = {https://data.govmu.org/dataset/imports-value-of-energy-sources-2021-2024},
  publisher    = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210}}
}

License

Released under CC BY 4.0.

Original data (c) MDPA. When using this dataset, please cite both the original source above and the Electric Sheep Africa repackaging.

About Electric Sheep

Electric Sheep Africa is part of the Electric Sheep mission: a unified, ML-ready data layer for Africa on Hugging Face. We pull data from authoritative open sources, normalize the schemas, package as Parquet, and publish with consistent dataset cards so researchers and developers can use load_dataset() to start working in seconds.

Browse the full collection: huggingface.co/electricsheepafrica


Provenance: ingested 2026-07-16 via the Electric Sheep pipeline. Source 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

Downloads last month
27

Collection including electricsheepafrica/africa-mauritius-imports-value-of-energy-sources-2021-2024-fuel-oil-d4ca2210