--- license: odbl language: - en task_categories: - tabular-classification - tabular-regression multilinguality: multilingual size_categories: - n<1K tags: - "tabular" - "africa" - "open-data" - "official-statistics" - "morocco" - "mj" - "morocco-open-data" - "justice" - "commerce" - "cour-appel" - "activite" configs: - config_name: default data_files: - split: train path: data/train-00000-of-00001.parquet pretty_name: "Activite Detaillee Des Cours D Appel De Commerce | Africa (Morocco Open Data)" --- # Activite Detaillee Des Cours D Appel De Commerce | Africa (Morocco Open Data) **58 rows** - **1 Africa country/area** - **time not specified** - **source table** - *Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)* ![rows](https://img.shields.io/badge/rows-58-blue) ![countries](https://img.shields.io/badge/countries-1-green) ![period](https://img.shields.io/badge/period-time%20not%20specified-orange) ![indicators](https://img.shields.io/badge/indicators-0-purple) ![license](https://img.shields.io/badge/license-odbl-lightgrey) ## TL;DR This dataset contains **58 rows** from **Morocco Open Data**, covering **Activite Detaillee Des Cours D Appel De Commerce**. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples. ## What This Dataset Measures Official statistics datasets help analysts inspect public data as published by governments, national statistical systems, and regional data portals. Source-provided context: Ce fichier présente l'activité détaillée des Cours d'appel de commerce ## How To Read This Dataset - **One row means:** one source record from the original tabular resource, with Electric Sheep Africa provenance columns added where available. - **Primary geography column:** `country_iso3`. - **Best time column:** `not detected`. - **Time coverage basis:** not detected. - **Recommended join keys:** `country_iso3` where available plus source-specific keys. ## Coverage | Dimension | Value | |---|---:| | Rows | 58 | | Countries/areas | 1 | | First period | n/a | | Last period | n/a | | Indicators | 0 | | Columns | 18 | | Source format | XLSX | ## Geographic Coverage Top areas shown below, sorted by row count when available: | Area | Rows | First year | Last year | Name | |------|-----:|-----------:|----------:|------| | `MAR` | 58 | n/a | n/a | `Morocco` | ## Indicators, Variables, Or Resource Contents - This repo preserves one source tabular resource with its usable columns kept together. ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `source_record_id` | `string` | Stable row identifier assigned during Electric Sheep Africa engineering. | `ee11c9eb-0ab3-423e-8c07-d49329fb1f6e:dataset:0` | | `country_iso3` | `string` | ISO3 country or area code. | `MAR` | | `country_name` | `string` | Country or area name. | `Morocco` | | `source_sheet` | `string` | Source column from the original resource. | `س تجارية مفصل` | | `column` | `string` | Source column from the original resource. | `الاستعجالي` | | `d_2024` | `double` | Source column from the original resource. | `6.0` | | `d_2025` | `double` | Source column from the original resource. | `239.0` | | `d_2025_2` | `double` | Source column from the original resource. | `245.0` | | `d_2025_3` | `double` | Source column from the original resource. | `239.0` | | `d_2025_4` | `double` | Source column from the original resource. | `6.0` | | `source_provider` | `string` | Publishing organization. | `MJ` | | `source_dataset` | `string` | Source dataset or package title. | `Activité détaillée des Cours d'appel de commerce` | | `source_resource` | `string` | Source resource title, table name, or file name. | `النشاط المفصل لمحاكم الاستئناف التجارية سنة 2025.xlsx` | | `source_package_id` | `string` | Source package identifier. | `81915597-77ff-410c-bdbd-0e70afde23b7` | | `source_resource_id` | `string` | Source resource identifier. | `ee11c9eb-0ab3-423e-8c07-d49329fb1f6e` | | `source_url` | `string` | Original source URL or download URL. | `https://data.gov.ma/data/ar/dataset/81915597-77ff-410c-bdbd-0e70afde2...` | | `license_id` | `string` | Source license identifier. | `odc-odbl` | | `retrieved_at` | `string` | UTC source retrieval timestamp from the Electric Sheep Africa pipeline. | `2026-07-16T21:31:48Z` | ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-morocco-activite-detaillee-des-cours-d-appel-de-commerce-4b4bb912") 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"] == "MAR"] ``` ### 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 - No canonical year/date column was detected in the packaged table; use source metadata and domain context for temporal interpretation. - 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:** [Morocco Open Data](https://data.gov.ma/data/dataset/activite-detaillee-des-cours-d-appel-de-commerce-en-2023) - **Publisher:** MJ - **Portal:** [https://data.gov.ma/data](https://data.gov.ma/data) - **Resource:** [النشاط المفصل لمحاكم الاستئناف التجارية سنة 2025.xlsx](https://data.gov.ma/data/ar/dataset/81915597-77ff-410c-bdbd-0e70afde23b7/resource/ee11c9eb-0ab3-423e-8c07-d49329fb1f6e/download/-2025.xlsx) - **License:** [Open Data Commons Open Database License](https://opendatacommons.org/licenses/odbl/) - **Retrieved/generated:** `2026-07-16T21:32:38Z` - **Hugging Face repo:** [electricsheepafrica/africa-morocco-activite-detaillee-des-cours-d-appel-de-commerce-4b4bb912](https://huggingface.co/datasets/electricsheepafrica/africa-morocco-activite-detaillee-des-cours-d-appel-de-commerce-4b4bb912) ## 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 - Profile the distribution of values - Compare categories or geographies - Join with complementary public datasets - Check missingness before modeling - Use `country_iso3` as the safest geography join key when present ## Citation ```bibtex @misc{electric_sheep_africa_africa_morocco_activite_detaillee_des_cours_d_appel_de_commerce_4b4bb912_2026, title = {Activite Detaillee Des Cours D Appel De Commerce | Africa (Morocco Open Data)}, author = {MJ}, year = {2026}, url = {https://data.gov.ma/data/dataset/activite-detaillee-des-cours-d-appel-de-commerce-en-2023}, publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-morocco-activite-detaillee-des-cours-d-appel-de-commerce-4b4bb912}} } ``` ## License Released under [Open Data Commons Open Database License](https://opendatacommons.org/licenses/odbl/). Original data is published by MJ. 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.gov.ma/data/dataset/activite-detaillee-des-cours-d-appel-de-commerce-en-2023