indicator_id stringclasses 1
value | indicator_name stringclasses 1
value | country_iso3 stringclasses 1
value | source_sheet stringclasses 1
value | country_name stringclasses 1
value | year int64 2k 2.01k | value float64 35 39 | unit stringclasses 1
value | source_period_start_year int64 | source_period_end_year int64 | source_period_label stringclasses 0
values | 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-08-08 16:26:20 2026-08-08 16:26:20 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
contribution-of-smes-to-gdp-414a57b3 | CONTRIBUTION OF SMEs TO GDP | MU | Sheet1 | Mauritius | 2,002 | 35 | source_units_unspecified | null | null | null | MDPA | CONTRIBUTION OF SMEs TO GDP | csv-7.xlsx | 15cad0cc-88bb-40d5-bdec-ee354e5d4115 | d420dbd2-0c95-4609-9114-33946bb83919 | https://data.govmu.org/dataset/15cad0cc-88bb-40d5-bdec-ee354e5d4115/resource/d420dbd2-0c95-4609-9114-33946bb83919/download/csv-7.xlsx | CC-BY-SA-4.0 | 2026-08-08T16:26:20Z |
contribution-of-smes-to-gdp-414a57b3 | CONTRIBUTION OF SMEs TO GDP | MU | Sheet1 | Mauritius | 2,007 | 39 | source_units_unspecified | null | null | null | MDPA | CONTRIBUTION OF SMEs TO GDP | csv-7.xlsx | 15cad0cc-88bb-40d5-bdec-ee354e5d4115 | d420dbd2-0c95-4609-9114-33946bb83919 | https://data.govmu.org/dataset/15cad0cc-88bb-40d5-bdec-ee354e5d4115/resource/d420dbd2-0c95-4609-9114-33946bb83919/download/csv-7.xlsx | CC-BY-SA-4.0 | 2026-08-08T16:26:20Z |
Contribution of Smes to Gdp | Africa (MDPA)
2 rows - 1 Africa country/area - 2002-2007 - 1 indicator - Engineered by Electric Sheep Africa
TL;DR
This dataset contains 2 rows from MDPA, covering Contribution of Smes to Gdp. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples.
What This Dataset Measures
Economic datasets help analysts examine production, prices, public finance, trade flows, market conditions, and macroeconomic change.
Source-provided context: CONTRIBUTION OF SMEs TO GDP
How To Read This Dataset
- One row means: one indicator observation for one geography, time period, and optional source dimensions.
- Primary geography column:
country_iso3. - Best time column:
year. - Time coverage basis: year.
- Recommended join keys:
country_iso3,year,indicator_id.
Coverage
| Dimension | Value |
|---|---|
| Rows | 2 |
| Countries/areas | 1 |
| First period | 2002 |
| Last period | 2007 |
| Indicators | 1 |
| Columns | 19 |
| Source format | XLSX |
Geographic Coverage
Top areas shown below, sorted by row count when available:
| Area | Rows | First year | Last year | Name |
|---|---|---|---|---|
MU |
2 | 2002 | 2007 | Mauritius |
Indicators, Variables, Or Resource Contents
contribution-of-smes-to-gdp-414a57b3- CONTRIBUTION OF SMEs TO GDP(source_units_unspecified)
Schema
| Column | Type | Description | Example |
|---|---|---|---|
indicator_id |
string |
Stable source or Electric Sheep Africa indicator identifier. | contribution-of-smes-to-gdp-414a57b3 |
indicator_name |
string |
Human-readable indicator name. | CONTRIBUTION OF SMEs TO GDP |
country_iso3 |
string |
ISO3 country or area code. | MU |
source_sheet |
string |
Source column from the original resource. | Sheet1 |
country_name |
string |
Country or area name. | Mauritius |
year |
int64 |
Observation year. | 2002 |
value |
double |
Numeric observation value. | 35.0 |
unit |
string |
Measurement unit, when supplied by the source. | source_units_unspecified |
source_period_start_year |
int64 |
Start year inferred from source metadata. | `` |
source_period_end_year |
int64 |
End year inferred from source metadata. | `` |
source_period_label |
string |
Source column from the original resource. | `` |
source_provider |
dictionary<values=string, indices=int8, ordered=0> |
Publishing organization. | MDPA |
source_dataset |
dictionary<values=string, indices=int8, ordered=0> |
Source dataset or package title. | CONTRIBUTION OF SMEs TO GDP |
source_resource |
dictionary<values=string, indices=int8, ordered=0> |
Source resource title, table name, or file name. | csv-7.xlsx |
source_package_id |
dictionary<values=string, indices=int8, ordered=0> |
Source package identifier. | 15cad0cc-88bb-40d5-bdec-ee354e5d4115 |
source_resource_id |
dictionary<values=string, indices=int8, ordered=0> |
Source resource identifier. | d420dbd2-0c95-4609-9114-33946bb83919 |
source_url |
dictionary<values=string, indices=int8, ordered=0> |
Original source URL or download URL. | https://data.govmu.org/dataset/15cad0cc-88bb-40d5-bdec-ee354e5d4115/r... |
license_id |
dictionary<values=string, indices=int8, ordered=0> |
Source license identifier. | CC-BY-SA-4.0 |
retrieved_at |
dictionary<values=string, indices=int8, ordered=0> |
UTC source retrieval timestamp from the Electric Sheep Africa pipeline. | 2026-08-08T16:26:20Z |
Usage
from datasets import load_dataset
ds = load_dataset("electricsheepafrica/africa-mauritius-contribution-of-smes-to-gdp-ddebcf24")
df = ds["train"].to_pandas()
print(df.head())
Inspect Columns
print(df.info())
print(df.head())
Filter By Geography
if "country_iso3" in df.columns:
sample = df[df["country_iso3"] == "MU"]
Time-Series Pattern
if "value" in df.columns and "year" in df.columns:
trend = df.sort_values("year")
Pivot For Analysis
if {"indicator_id", "year", "value"}.issubset(df.columns):
matrix = df.pivot_table(index="year", columns="indicator_id", values="value")
print(matrix.tail())
Data Quality Notes
- Canonical time field:
year. - Missing values are preserved rather than silently imputed.
- Column names are standardized for machine use; source meanings are preserved where known.
- Always confirm source methodology, units, and collection definitions before policy, production, or redistribution-sensitive use.
Source And Provenance
- Source: MDPA
- Publisher: MDPA
- Portal: https://data.govmu.org
- Resource: csv-7.xlsx
- License: CC BY-SA 4.0
- Retrieved/generated:
2026-08-08T17:16:02Z - Hugging Face repo: electricsheepafrica/africa-mauritius-contribution-of-smes-to-gdp-ddebcf24
Transformations Applied
- Converted the source table to Parquet for efficient analytics and ML workflows.
- Added or preserved source provenance columns where available.
- Standardized README metadata, dataset loading configuration, schema documentation, and citation format.
- Preserved source-reported values without analytical imputation.
Suggested Analyses
- Build time-series dashboards
- Compare economic indicators
- Join with population or sector data
- Build time-series views and period-over-period comparisons
- Pivot to geography x period or indicator x period matrices
- Check missingness before modeling
- Use
country_iso3as the safest geography join key when present
Citation
@misc{electric_sheep_africa_africa_mauritius_contribution_of_smes_to_gdp_ddebcf24_2007,
title = {Contribution of Smes to Gdp | Africa (MDPA)},
author = {MDPA},
year = {2007},
url = {https://data.govmu.org/dataset/contribution-smes-gdp},
publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa},
howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-contribution-of-smes-to-gdp-ddebcf24}}
}
License
Released under CC BY-SA 4.0.
Original data is published by MDPA. Electric Sheep Africa engineering standardizes the data for discovery, loading, and analysis on Hugging Face. Cite both the original source and this ML-ready dataset when used.
About Electric Sheep Africa
Electric Sheep Africa publishes ML-ready African public datasets on Hugging Face.
Provenance: README standardized 2026-08-11 by the Electric Sheep Africa README system. Source URL: https://data.govmu.org/dataset/contribution-smes-gdp
- Downloads last month
- 38