--- license: cc-by-sa-4.0 language: - en task_categories: - tabular-regression - time-series-forecasting multilinguality: multilingual size_categories: - n<1K tags: - "tabular" - "africa" - "open-data" - "official-statistics" - "mauritius" - "mdpa" - "economics" - "finance-and-trade" - "budget" - "capital-projects" - "district" - "grants" configs: - config_name: default data_files: - split: train path: data/train-00000-of-00001.parquet pretty_name: "Small Development Projects Under Indian Grant | Africa (MDPA)" --- # Small Development Projects Under Indian Grant | Africa (MDPA) **380 rows** - **1 Africa country/area** - **2022-2023** - **1 indicator** - *Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)* ![rows](https://img.shields.io/badge/rows-380-blue) ![countries](https://img.shields.io/badge/countries-1-green) ![period](https://img.shields.io/badge/period-2022--2023-orange) ![indicators](https://img.shields.io/badge/indicators-1-purple) ![license](https://img.shields.io/badge/license-cc--by--sa--4.0-lightgrey) ## TL;DR This dataset contains **380 rows** from **MDPA**, covering **Small Development Projects Under Indian Grant**. 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: Dataset shows the Small Development Projects under Indian Grant by region ## 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 | 380 | | Countries/areas | 1 | | First period | 2022 | | Last period | 2023 | | Indicators | 1 | | Columns | 22 | | Source format | CSV | ## Geographic Coverage Top areas shown below, sorted by row count when available: | Area | Rows | First year | Last year | Name | |------|-----:|-----------:|----------:|------| | `MU` | 380 | 2022 | 2023 | `Mauritius` | ## Indicators, Variables, Or Resource Contents - `small-development-projects-under-indian-grant-350b7dc6` - Small Development Projects under Indian Grant(source_units_unspecified) ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `indicator_id` | `string` | Stable source or Electric Sheep Africa indicator identifier. | `small-development-projects-under-indian-grant-350b7dc6` | | `indicator_name` | `string` | Human-readable indicator name. | `Small Development Projects under Indian Grant` | | `country_iso3` | `string` | ISO3 country or area code. | `MU` | | `country_name` | `string` | Country or area name. | `Mauritius` | | `year` | `int64` | Observation year. | `2023` | | `value` | `double` | Numeric observation value. | `12.0` | | `unit` | `string` | Measurement unit, when supplied by the source. | `source_units_unspecified` | | `dimension_rev` | `string` | Source dimension retained during long-form normalization. | `Project Value` | | `dimension_general_public_services` | `string` | Source dimension retained during long-form normalization. | `District of Port Louis` | | `dimension_project_description` | `string` | Source dimension retained during long-form normalization. | `Upgrading of Bienheureux Pere Laval Football Ground at Ste Croix` | | `dimension_implementing_agency` | `string` | Source dimension retained during long-form normalization. | `Ministry of Local Government and Disaster Risk Management` | | `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` | Publishing organization. | `MDPA` | | `source_dataset` | `dictionary` | Source dataset or package title. | `Small Development Projects under Indian Grant` | | `source_resource` | `dictionary` | Source resource title, table name, or file name. | `Small_Dev_Proj_Indian_Grant.csv` | | `source_package_id` | `dictionary` | Source package identifier. | `b69c62c3-ca41-4497-9f68-3adc741b31c7` | | `source_resource_id` | `dictionary` | Source resource identifier. | `88633aad-c280-4ae1-972c-e8f8a0f3878c` | | `source_url` | `dictionary` | Original source URL or download URL. | `https://data.govmu.org/dataset/b69c62c3-ca41-4497-9f68-3adc741b31c7/r...` | | `license_id` | `dictionary` | Source license identifier. | `CC-BY-SA-4.0` | | `retrieved_at` | `dictionary` | UTC source retrieval timestamp from the Electric Sheep Africa pipeline. | `2026-08-08T16:26:20Z` | ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-mauritius-small-development-projects-under-indian-grant-199ea06a") df = ds["train"].to_pandas() print(df.head()) ``` ### Inspect Columns ```python print(df.info()) print(df.head()) ``` ### Filter By Geography ```python if "country_iso3" in df.columns: sample = df[df["country_iso3"] == "MU"] ``` ### Time-Series Pattern ```python if "value" in df.columns and "year" in df.columns: trend = df.sort_values("year") ``` ### Pivot For Analysis ```python 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](https://data.govmu.org/dataset/small-development-projects-under-indian-grant) - **Publisher:** MDPA - **Portal:** [https://data.govmu.org](https://data.govmu.org) - **Resource:** [Small_Dev_Proj_Indian_Grant.csv](https://data.govmu.org/dataset/b69c62c3-ca41-4497-9f68-3adc741b31c7/resource/88633aad-c280-4ae1-972c-e8f8a0f3878c/download/small_dev_proj_indian_grant.csv) - **License:** [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) - **Retrieved/generated:** `2026-08-08T17:05:16Z` - **Hugging Face repo:** [electricsheepafrica/africa-mauritius-small-development-projects-under-indian-grant-199ea06a](https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-small-development-projects-under-indian-grant-199ea06a) ## 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_iso3` as the safest geography join key when present ## Citation ```bibtex @misc{electric_sheep_africa_africa_mauritius_small_development_projects_under_indian_grant_199ea06a_2023, title = {Small Development Projects Under Indian Grant | Africa (MDPA)}, author = {MDPA}, year = {2023}, url = {https://data.govmu.org/dataset/small-development-projects-under-indian-grant}, publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-small-development-projects-under-indian-grant-199ea06a}} } ``` ## License Released under [CC BY-SA 4.0](https://creativecommons.org/licenses/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/small-development-projects-under-indian-grant