Olaroti commited on
Commit
bcccef5
·
verified ·
1 Parent(s): 0ea3069

Standardize Electric Sheep Africa dataset card

Browse files
Files changed (1) hide show
  1. README.md +133 -68
README.md CHANGED
@@ -5,86 +5,108 @@ language:
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
- - energy
 
 
 
 
 
 
 
19
  configs:
20
  - config_name: default
21
  data_files:
22
  - split: train
23
  path: data/train-00000-of-00001.parquet
24
- pretty_name: "Sales of electricity by type of tariff | Africa (Mauritius official open data)"
25
  ---
26
 
27
- # Sales of electricity by type of tariff | Africa (Mauritius official open data)
28
 
29
- 40 rows - 1 Africa country - 2017-2021 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)
30
 
31
  ![rows](https://img.shields.io/badge/rows-40-blue)
32
  ![countries](https://img.shields.io/badge/countries-1-green)
33
- ![years](https://img.shields.io/badge/years-2017-2021-orange)
34
  ![indicators](https://img.shields.io/badge/indicators-2-purple)
35
- ![license](https://img.shields.io/badge/license-cc-by-sa-4.0-lightgrey)
36
 
37
  ## TL;DR
38
 
39
- This dataset packages one official `CSV` resource from **Mauritius** as
40
- ML-ready Parquet. The source file is the provenance boundary; all usable
41
- indicators or tabular columns from the resource stay together in this repo.
42
 
43
- ## About the source
44
 
45
- - **Source:** [Sales of electricity by type of tariff](https://data.govmu.org/dataset/sales-electricity-type-tariff)
46
- - **Publisher:** MDPA
47
- - **Resource:** [Sales-of-electricity-by-type-of-tariff-2017-2021.csv](https://data.govmu.org/dataset/89d7ecdc-fff6-4dce-a4a0-7edcc597b5c7/resource/fcfec910-0b34-4505-a2a2-d2a0f184af41/download/sales-of-electricity-by-type-of-tariff-2017-2021.csv)
48
- - **Format:** `CSV`
49
- - **License:** [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
50
- - **Packaging mode:** `indicator_long`
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
 
52
- ## Geographic coverage
53
 
54
- 1 Africa country:
55
 
56
- | Country | Rows | First year | Last year | Name |
57
- |---------|-----:|-----------:|----------:|------|
58
  | `MU` | 40 | 2017 | 2021 | `Mauritius` |
59
 
60
- ## Indicators or Resource Contents
61
 
62
- - `sales-of-electricity-by-type-of-tariff-sales-87e5c027` - Sales of electricity by type of tariff - sales
63
- - `sales-of-electricity-by-type-of-tariff-no-of-consumers-8d7fb54e` - Sales of electricity by type of tariff - no of consumers
64
 
65
  ## Schema
66
 
67
  | Column | Type | Description | Example |
68
  |--------|------|-------------|---------|
69
- | `indicator_id` | `string` | Stable indicator identifier. | `sales-of-electricity-by-type-of-tariff-sales-87e5c027` |
70
  | `indicator_name` | `string` | Human-readable indicator name. | `Sales of electricity by type of tariff - sales` |
71
- | `country_iso3` | `string` | ISO3 country code. | `MU` |
72
- | `country_name` | `string` | Country name. | `Mauritius` |
73
- | `year` | `Int64` | Observation year. | `2017` |
74
- | `value` | `float64` | Numeric observation value. | `872.7` |
75
- | `unit` | `string` | Measurement unit, when available. | `source_units_unspecified` |
76
- | `dimension_type_of_tarrif` | `string` | Source dimension. | `Domestic` |
77
- | `source_period_start_year` | `Int64` | First year inferred from source resource metadata. | `2017` |
78
- | `source_period_end_year` | `Int64` | Last year inferred from source resource metadata. | `2021` |
79
- | `source_period_label` | `category` | Human-readable period inferred from source resource metadata. | `2017-2021` |
80
- | `source_provider` | `category` | Publishing organization. | `MDPA` |
81
- | `source_dataset` | `category` | Source package title. | `Sales of electricity by type of tariff` |
82
- | `source_resource` | `category` | Source resource title. | `Sales-of-electricity-by-type-of-tariff-2017-2021.csv` |
83
- | `source_package_id` | `category` | CKAN package UUID. | `89d7ecdc-fff6-4dce-a4a0-7edcc597b5c7` |
84
- | `source_resource_id` | `category` | CKAN resource UUID. | `fcfec910-0b34-4505-a2a2-d2a0f184af41` |
85
- | `source_url` | `category` | Original source resource URL. | `https://data.govmu.org/dataset/89d7ecdc-fff6-4dce-a4a0-7edcc597b5c7/reso` |
86
- | `license_id` | `category` | Source license identifier. | `CC-BY-SA-4.0` |
87
- | `retrieved_at` | `category` | UTC retrieval timestamp. | `2026-08-08T16:26:20Z` |
88
 
89
  ## Usage
90
 
@@ -96,29 +118,78 @@ df = ds["train"].to_pandas()
96
  print(df.head())
97
  ```
98
 
99
- ### Filter to one country
100
 
101
  ```python
102
- sample_country = df[df["country_iso3"] == "MU"]
 
103
  ```
104
 
105
- ### Work with indicators
106
 
107
  ```python
108
- if "indicator_id" in df.columns:
109
- print(df["indicator_id"].value_counts().head())
110
- sample = df.sort_values([c for c in ["indicator_id", "year"] if c in df.columns])
111
  ```
112
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
  ## Citation
114
 
115
  ```bibtex
116
  @misc{electric_sheep_africa_africa_mauritius_sales_of_electricity_by_type_of_tariff_8e98e883_2021,
117
- title = {Sales of electricity by type of tariff | Africa (Mauritius official open data)},
118
  author = {MDPA},
119
  year = {2021},
120
  url = {https://data.govmu.org/dataset/sales-electricity-type-tariff},
121
- publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa},
122
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-sales-of-electricity-by-type-of-tariff-8e98e883}}
123
  }
124
  ```
@@ -127,20 +198,14 @@ if "indicator_id" in df.columns:
127
 
128
  Released under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).
129
 
130
- Original data (c) MDPA. When using this dataset, please cite both the
131
- original source above and the Electric Sheep Africa repackaging.
132
-
133
- ## About Electric Sheep
134
 
135
- Electric Sheep Africa is part of the Electric Sheep mission: a unified,
136
- ML-ready data layer for Africa on Hugging Face. We pull data from authoritative
137
- open sources, normalize the schemas, package as Parquet, and publish with
138
- consistent dataset cards so researchers and developers can use `load_dataset()`
139
- to start working in seconds.
140
 
141
- Browse the full collection: [huggingface.co/electricsheepafrica](https://huggingface.co/electricsheepafrica)
142
 
143
  ---
144
 
145
- Provenance: ingested 2026-08-08 via the Electric Sheep pipeline. Source URL:
146
- https://data.govmu.org/dataset/89d7ecdc-fff6-4dce-a4a0-7edcc597b5c7/resource/fcfec910-0b34-4505-a2a2-d2a0f184af41/download/sales-of-electricity-by-type-of-tariff-2017-2021.csv
 
5
  task_categories:
6
  - tabular-regression
7
  - time-series-forecasting
8
+ multilinguality: multilingual
9
  size_categories:
10
  - n<1K
11
  tags:
12
+ - "tabular"
13
+ - "africa"
14
+ - "open-data"
15
+ - "official-statistics"
16
+ - "mauritius"
17
+ - "mdpa"
18
+ - "energy"
19
+ - "environment-and-natural-resources"
20
+ - "commercial"
21
+ - "domestic"
22
+ - "ceb"
23
+ - "gwh"
24
+ - "industrial"
25
+ - "tarrif"
26
  configs:
27
  - config_name: default
28
  data_files:
29
  - split: train
30
  path: data/train-00000-of-00001.parquet
31
+ pretty_name: "Sales of Electricity by Type of Tariff | Africa (MDPA)"
32
  ---
33
 
34
+ # Sales of Electricity by Type of Tariff | Africa (MDPA)
35
 
36
+ **40 rows** - **1 Africa country/area** - **2017-2021** - **2 indicators** - *Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)*
37
 
38
  ![rows](https://img.shields.io/badge/rows-40-blue)
39
  ![countries](https://img.shields.io/badge/countries-1-green)
40
+ ![period](https://img.shields.io/badge/period-2017--2021-orange)
41
  ![indicators](https://img.shields.io/badge/indicators-2-purple)
42
+ ![license](https://img.shields.io/badge/license-cc--by--sa--4.0-lightgrey)
43
 
44
  ## TL;DR
45
 
46
+ This dataset contains **40 rows** from **MDPA**, covering **Sales of Electricity by Type of Tariff**. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples.
 
 
47
 
48
+ ## What This Dataset Measures
49
 
50
+ Energy datasets help analysts study supply, demand, prices, generation, access, and the infrastructure behind economic activity.
51
+
52
+ Source-provided context: Data shows electricity sold by type of tariff for the year 2017 to 2021
53
+
54
+ ## How To Read This Dataset
55
+
56
+ - **One row means:** one indicator observation for one geography, time period, and optional source dimensions.
57
+ - **Primary geography column:** `country_iso3`.
58
+ - **Best time column:** `year`.
59
+ - **Time coverage basis:** year.
60
+ - **Recommended join keys:** `country_iso3`, `year`, `indicator_id`.
61
+
62
+ ## Coverage
63
+
64
+ | Dimension | Value |
65
+ |---|---:|
66
+ | Rows | 40 |
67
+ | Countries/areas | 1 |
68
+ | First period | 2017 |
69
+ | Last period | 2021 |
70
+ | Indicators | 2 |
71
+ | Columns | 19 |
72
+ | Source format | CSV |
73
 
74
+ ## Geographic Coverage
75
 
76
+ Top areas shown below, sorted by row count when available:
77
 
78
+ | Area | Rows | First year | Last year | Name |
79
+ |------|-----:|-----------:|----------:|------|
80
  | `MU` | 40 | 2017 | 2021 | `Mauritius` |
81
 
82
+ ## Indicators, Variables, Or Resource Contents
83
 
84
+ - `sales-of-electricity-by-type-of-tariff-sales-87e5c027` - Sales of electricity by type of tariff - sales(source_units_unspecified)
85
+ - `sales-of-electricity-by-type-of-tariff-no-of-consumers-8d7fb54e` - Sales of electricity by type of tariff - no of consumers(source_units_unspecified)
86
 
87
  ## Schema
88
 
89
  | Column | Type | Description | Example |
90
  |--------|------|-------------|---------|
91
+ | `indicator_id` | `string` | Stable source or Electric Sheep Africa indicator identifier. | `sales-of-electricity-by-type-of-tariff-sales-87e5c027` |
92
  | `indicator_name` | `string` | Human-readable indicator name. | `Sales of electricity by type of tariff - sales` |
93
+ | `country_iso3` | `string` | ISO3 country or area code. | `MU` |
94
+ | `country_name` | `string` | Country or area name. | `Mauritius` |
95
+ | `year` | `int64` | Observation year. | `2017` |
96
+ | `value` | `double` | Numeric observation value. | `872.7` |
97
+ | `unit` | `string` | Measurement unit, when supplied by the source. | `source_units_unspecified` |
98
+ | `dimension_type_of_tarrif` | `string` | Source dimension retained during long-form normalization. | `Domestic` |
99
+ | `source_period_start_year` | `int64` | Start year inferred from source metadata. | `2017` |
100
+ | `source_period_end_year` | `int64` | End year inferred from source metadata. | `2021` |
101
+ | `source_period_label` | `dictionary<values=string, indices=int8, ordered=0>` | Source column from the original resource. | `2017-2021` |
102
+ | `source_provider` | `dictionary<values=string, indices=int8, ordered=0>` | Publishing organization. | `MDPA` |
103
+ | `source_dataset` | `dictionary<values=string, indices=int8, ordered=0>` | Source dataset or package title. | `Sales of electricity by type of tariff` |
104
+ | `source_resource` | `dictionary<values=string, indices=int8, ordered=0>` | Source resource title, table name, or file name. | `Sales-of-electricity-by-type-of-tariff-2017-2021.csv` |
105
+ | `source_package_id` | `dictionary<values=string, indices=int8, ordered=0>` | Source package identifier. | `89d7ecdc-fff6-4dce-a4a0-7edcc597b5c7` |
106
+ | `source_resource_id` | `dictionary<values=string, indices=int8, ordered=0>` | Source resource identifier. | `fcfec910-0b34-4505-a2a2-d2a0f184af41` |
107
+ | `source_url` | `dictionary<values=string, indices=int8, ordered=0>` | Original source URL or download URL. | `https://data.govmu.org/dataset/89d7ecdc-fff6-4dce-a4a0-7edcc597b5c7/r...` |
108
+ | `license_id` | `dictionary<values=string, indices=int8, ordered=0>` | Source license identifier. | `CC-BY-SA-4.0` |
109
+ | `retrieved_at` | `dictionary<values=string, indices=int8, ordered=0>` | UTC source retrieval timestamp from the Electric Sheep Africa pipeline. | `2026-08-08T16:26:20Z` |
110
 
111
  ## Usage
112
 
 
118
  print(df.head())
119
  ```
120
 
121
+ ### Inspect Columns
122
 
123
  ```python
124
+ print(df.info())
125
+ print(df.head())
126
  ```
127
 
128
+ ### Filter By Geography
129
 
130
  ```python
131
+ if "country_iso3" in df.columns:
132
+ sample = df[df["country_iso3"] == "MU"]
 
133
  ```
134
 
135
+ ### Time-Series Pattern
136
+
137
+ ```python
138
+ if "value" in df.columns and "year" in df.columns:
139
+ trend = df.sort_values("year")
140
+ ```
141
+
142
+ ### Pivot For Analysis
143
+
144
+ ```python
145
+ if {"indicator_id", "year", "value"}.issubset(df.columns):
146
+ matrix = df.pivot_table(index="year", columns="indicator_id", values="value")
147
+ print(matrix.tail())
148
+ ```
149
+
150
+ ## Data Quality Notes
151
+
152
+ - Canonical time field: `year`.
153
+ - Missing values are preserved rather than silently imputed.
154
+ - Column names are standardized for machine use; source meanings are preserved where known.
155
+ - Always confirm source methodology, units, and collection definitions before policy, production, or redistribution-sensitive use.
156
+
157
+ ## Source And Provenance
158
+
159
+ - **Source:** [MDPA](https://data.govmu.org/dataset/sales-electricity-type-tariff)
160
+ - **Publisher:** MDPA
161
+ - **Portal:** [https://data.govmu.org](https://data.govmu.org)
162
+ - **Resource:** [Sales-of-electricity-by-type-of-tariff-2017-2021.csv](https://data.govmu.org/dataset/89d7ecdc-fff6-4dce-a4a0-7edcc597b5c7/resource/fcfec910-0b34-4505-a2a2-d2a0f184af41/download/sales-of-electricity-by-type-of-tariff-2017-2021.csv)
163
+ - **License:** [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
164
+ - **Retrieved/generated:** `2026-08-08T16:32:54Z`
165
+ - **Hugging Face repo:** [electricsheepafrica/africa-mauritius-sales-of-electricity-by-type-of-tariff-8e98e883](https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-sales-of-electricity-by-type-of-tariff-8e98e883)
166
+
167
+ ## Transformations Applied
168
+
169
+ - Converted the source table to Parquet for efficient analytics and ML workflows.
170
+ - Added or preserved source provenance columns where available.
171
+ - Standardized README metadata, dataset loading configuration, schema documentation, and citation format.
172
+ - Preserved source-reported values without analytical imputation.
173
+
174
+ ## Suggested Analyses
175
+
176
+ - Track supply or price trends
177
+ - Compare energy sources
178
+ - Join with population, industry, or emissions data
179
+ - Build time-series views and period-over-period comparisons
180
+ - Pivot to geography x period or indicator x period matrices
181
+ - Check missingness before modeling
182
+ - Use `country_iso3` as the safest geography join key when present
183
+
184
  ## Citation
185
 
186
  ```bibtex
187
  @misc{electric_sheep_africa_africa_mauritius_sales_of_electricity_by_type_of_tariff_8e98e883_2021,
188
+ title = {Sales of Electricity by Type of Tariff | Africa (MDPA)},
189
  author = {MDPA},
190
  year = {2021},
191
  url = {https://data.govmu.org/dataset/sales-electricity-type-tariff},
192
+ publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa},
193
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-sales-of-electricity-by-type-of-tariff-8e98e883}}
194
  }
195
  ```
 
198
 
199
  Released under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/).
200
 
201
+ Original data is published by MDPA. Electric Sheep Africa
202
+ engineering standardizes the data for discovery, loading, and analysis on
203
+ Hugging Face. Cite both the original source and this ML-ready dataset when used.
 
204
 
205
+ ## About Electric Sheep Africa
 
 
 
 
206
 
207
+ Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face.
208
 
209
  ---
210
 
211
+ Provenance: README standardized 2026-08-11 by the Electric Sheep Africa README system. Source URL: https://data.govmu.org/dataset/sales-electricity-type-tariff