--- license: cc-by-4.0 language: - en task_categories: - tabular-regression - time-series-forecasting multilinguality: monolingual size_categories: - n<1K tags: - tabular - csv - africa - mauritius - official-statistics - open-data - education pretty_name: "Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 | Africa (Mauritius official open data)" --- # Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 | Africa (Mauritius official open data) 14 rows - 1 Africa country - 2023-2024 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica) ![rows](https://img.shields.io/badge/rows-14-blue) ![countries](https://img.shields.io/badge/countries-1-green) ![years](https://img.shields.io/badge/years-2023-2024-orange) ![indicators](https://img.shields.io/badge/indicators-7-purple) ![license](https://img.shields.io/badge/license-cc-by-4.0-lightgrey) ## TL;DR This dataset packages one official CSV resource from **Mauritius** as ML-ready Parquet. The CSV is the provenance boundary; all usable indicators or tabular columns from the source file stay together in this repo. ## About the source - **Source:** [Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024](https://data.govmu.org/dataset/secondary-enrolment-and-gross-enrolment-ratio-by-gender-for-island-of-rodrigues-2023-to-2024) - **Publisher:** MDPA - **Resource:** [secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender Island of Rodrigues 2023 to 2024.csv](https://data.govmu.org/dataset/dba07c7e-f8e8-44b0-afb0-cb9e9f626646/resource/7720f1c3-7f56-4ada-b1e8-faf8f810f594/download/secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-island-of-rodrigues-2023-to-.csv) - **License:** [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) - **Packaging mode:** `indicator_long` ## Geographic coverage 1 Africa country: | Country | Rows | First year | Last year | Name | |---------|-----:|-----------:|----------:|------| | `MUS` | 14 | 2023 | 2024 | `Mauritius` | ## Indicators or Resource Contents - `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-6e8be347` - Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 - male enrolment - `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-b7b08af6` - Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 - female enrolment - `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-05858c22` - Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 - male population - `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-09ccdacb` - Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 - female population - `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-64148c1f` - Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 - ger - `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-ea30ee1f` - Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 - ger male - `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-2bbf3477` - Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 - ger female ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `indicator_id` | `object` | Stable indicator identifier. | `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-for-` | | `indicator_name` | `object` | Human-readable indicator name. | `Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender fo` | | `country_iso3` | `object` | ISO3 country code. | `MUS` | | `country_name` | `object` | Country name. | `Mauritius` | | `year` | `Int64` | Observation year. | `2023` | | `value` | `float64` | Numeric observation value. | `2473.0` | | `unit` | `object` | Measurement unit, when available. | `source_units_unspecified` | | `source_provider` | `object` | Publishing organization. | `MDPA` | | `source_dataset` | `object` | Source package title. | `Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender fo` | | `source_resource` | `object` | Source resource title. | `secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender Isla` | | `source_package_id` | `object` | CKAN package UUID. | `dba07c7e-f8e8-44b0-afb0-cb9e9f626646` | | `source_resource_id` | `object` | CKAN resource UUID. | `7720f1c3-7f56-4ada-b1e8-faf8f810f594` | | `source_url` | `object` | Original CSV URL. | `https://data.govmu.org/dataset/dba07c7e-f8e8-44b0-afb0-cb9e9f626646/reso` | | `license_id` | `object` | Source license identifier. | `cc-by` | | `retrieved_at` | `object` | UTC retrieval timestamp. | `2026-07-16T19:23:24Z` | ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-mauritius-secondary-enrolment-and-gross-enrolment-ratio-12-19-years-734c0ba5") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python sample_country = df[df["country_iso3"] == "MUS"] ``` ### Work with indicators ```python if "indicator_id" in df.columns: print(df["indicator_id"].value_counts().head()) sample = df.sort_values([c for c in ["indicator_id", "year"] if c in df.columns]) ``` ## Citation ```bibtex @misc{electric_sheep_africa_africa_mauritius_secondary_enrolment_and_gross_enrolment_ratio_12_19_years_734c0_2024, title = {Secondary Enrolment and Gross Enrolment Ratio (12-19 Years) By Gender for Island of Rodrigues 2023 to 2024 | Africa (Mauritius official open data)}, author = {MDPA}, year = {2024}, url = {https://data.govmu.org/dataset/secondary-enrolment-and-gross-enrolment-ratio-by-gender-for-island-of-rodrigues-2023-to-2024}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-secondary-enrolment-and-gross-enrolment-ratio-12-19-years-734c0ba5}} } ``` ## License Released under [CC BY 4.0](https://creativecommons.org/licenses/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](https://huggingface.co/electricsheepafrica) --- Provenance: ingested 2026-07-16 via the Electric Sheep pipeline. Source URL: https://data.govmu.org/dataset/dba07c7e-f8e8-44b0-afb0-cb9e9f626646/resource/7720f1c3-7f56-4ada-b1e8-faf8f810f594/download/secondary-enrolment-and-gross-enrolment-ratio-12-19-years-by-gender-island-of-rodrigues-2023-to-.csv