--- 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" - "activite" - "appel" - "commercial" - "tribunaux" configs: - config_name: default data_files: - split: train path: data/train-00000-of-00001.parquet pretty_name: "Activite Generale Des Cours D Appel De Commerce Et Des Tri | Africa (Morocco Open Data)" --- # Activite Generale Des Cours D Appel De Commerce Et Des Tri | Africa (Morocco Open Data) **15 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-15-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 **15 rows** from **Morocco Open Data**, covering **Activite Generale Des Cours D Appel De Commerce Et Des Tri**. 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é générale des Cours d'appel de commerce et des tribunaux de commerce au titre de l’année 2021 ## 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 | 15 | | 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` | 15 | 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. | `4287cfcc-672c-441b-b7c5-161c66e080a7: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_2487` | `double` | Source column from the original resource. | `2383.0` | | `d_6837` | `double` | Source column from the original resource. | `3139.0` | | `d_9324` | `double` | Source column from the original resource. | `5522.0` | | `d_6515` | `double` | Source column from the original resource. | `3063.0` | | `d_2809` | `double` | Source column from the original resource. | `2459.0` | | `source_provider` | `string` | Publishing organization. | `MJ` | | `source_dataset` | `string` | Source dataset or package title. | `Activité générale des Cours d'appel de commerce et des tribunaux de c...` | | `source_resource` | `string` | Source resource title, table name, or file name. | `النشاط العام لمحاكم الاستئناف التجارية والمحاكم التجارية.xlsx` | | `source_package_id` | `string` | Source package identifier. | `3d61b176-bb9b-49d7-8707-464058275ab3` | | `source_resource_id` | `string` | Source resource identifier. | `4287cfcc-672c-441b-b7c5-161c66e080a7` | | `source_url` | `string` | Original source URL or download URL. | `https://data.gov.ma/data/fr/dataset/3d61b176-bb9b-49d7-8707-464058275...` | | `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-generale-des-cours-d-appel-de-commerce-et-des-tri-10fc2ae0") 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-generale-des-cours-d-appel-de-commerce-et-des-tribunaux-de-commerce-en-2021) - **Publisher:** MJ - **Portal:** [https://data.gov.ma/data](https://data.gov.ma/data) - **Resource:** [النشاط العام لمحاكم الاستئناف التجارية والمحاكم التجارية.xlsx](https://data.gov.ma/data/fr/dataset/3d61b176-bb9b-49d7-8707-464058275ab3/resource/4287cfcc-672c-441b-b7c5-161c66e080a7/download/-.xlsx) - **License:** [Open Data Commons Open Database License](https://opendatacommons.org/licenses/odbl/) - **Retrieved/generated:** `2026-07-16T22:12:59Z` - **Hugging Face repo:** [electricsheepafrica/africa-morocco-activite-generale-des-cours-d-appel-de-commerce-et-des-tri-10fc2ae0](https://huggingface.co/datasets/electricsheepafrica/africa-morocco-activite-generale-des-cours-d-appel-de-commerce-et-des-tri-10fc2ae0) ## 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_generale_des_cours_d_appel_de_commerce_et_des_tri_10fc2a_2026, title = {Activite Generale Des Cours D Appel De Commerce Et Des Tri | Africa (Morocco Open Data)}, author = {MJ}, year = {2026}, url = {https://data.gov.ma/data/dataset/activite-generale-des-cours-d-appel-de-commerce-et-des-tribunaux-de-commerce-en-2021}, publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-morocco-activite-generale-des-cours-d-appel-de-commerce-et-des-tri-10fc2ae0}} } ``` ## 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-generale-des-cours-d-appel-de-commerce-et-des-tribunaux-de-commerce-en-2021