--- 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 - agriculture pretty_name: "Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 | Africa (Mauritius official open data)" --- # Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 | Africa (Mauritius official open data) 216 rows - 1 Africa country - 2000-2023 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica) ![rows](https://img.shields.io/badge/rows-216-blue) ![countries](https://img.shields.io/badge/countries-1-green) ![years](https://img.shields.io/badge/years-2000-2023-orange) ![indicators](https://img.shields.io/badge/indicators-9-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:** [Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023](https://data.govmu.org/dataset/area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauritius-2000-to-2023) - **Publisher:** MDPA - **Resource:** [Area Harvest, Cane Prod, Cane Yield, Metayers and Owner 2000-2023.csv](https://data.govmu.org/dataset/56e6659b-1967-4e20-bedb-c1fc920231c3/resource/210747ca-0b8a-419b-8ed2-301cf16d63a7/download/area-harvest-cane-prod-cane-yield-metayers-and-owner-2000-2023.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` | 216 | 2000 | 2023 | `Mauritius` | ## Indicators or Resource Contents - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-263c665b` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - area harvested by estates - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-114365d2` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - area harvested by metayer - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-85d092ee` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - area harvested by owner planters - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-23cf6364` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - cane production by estates - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-a3482a10` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - cane production by metayer - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-7c07ee52` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - cane production by owner planters - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-34c511cf` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - cane yield by estates - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-424c05f0` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - cane yield by metayer - `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti-3ebce012` - Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 - cane yield by owner planters ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `indicator_id` | `object` | Stable indicator identifier. | `area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauriti` | | `indicator_name` | `object` | Human-readable indicator name. | `Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Maur` | | `country_iso3` | `object` | ISO3 country code. | `MUS` | | `country_name` | `object` | Country name. | `Mauritius` | | `year` | `Int64` | Observation year. | `2000` | | `value` | `float64` | Numeric observation value. | `35885.0` | | `unit` | `object` | Measurement unit, when available. | `source_units_unspecified` | | `source_provider` | `object` | Publishing organization. | `MDPA` | | `source_dataset` | `object` | Source package title. | `Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Maur` | | `source_resource` | `object` | Source resource title. | `Area Harvest, Cane Prod, Cane Yield, Metayers and Owner 2000-2023.csv` | | `source_package_id` | `object` | CKAN package UUID. | `56e6659b-1967-4e20-bedb-c1fc920231c3` | | `source_resource_id` | `object` | CKAN resource UUID. | `210747ca-0b8a-419b-8ed2-301cf16d63a7` | | `source_url` | `object` | Original CSV URL. | `https://data.govmu.org/dataset/56e6659b-1967-4e20-bedb-c1fc920231c3/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-area-harvested-cane-production-cane-yield-metayers-and-own-d94758a1") 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_area_harvested_cane_production_cane_yield_metayers_and_own_d947_2023, title = {Area Harvested, Cane Production, Cane Yield, Metayers and Owner for Mauritius 2000 to 2023 | Africa (Mauritius official open data)}, author = {MDPA}, year = {2023}, url = {https://data.govmu.org/dataset/area-harvested-cane-production-cane-yield-metayers-and-owner-for-mauritius-2000-to-2023}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-mauritius-area-harvested-cane-production-cane-yield-metayers-and-own-d94758a1}} } ``` ## 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/56e6659b-1967-4e20-bedb-c1fc920231c3/resource/210747ca-0b8a-419b-8ed2-301cf16d63a7/download/area-harvest-cane-prod-cane-yield-metayers-and-owner-2000-2023.csv