--- 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" - "casablanca" configs: - config_name: default data_files: - split: train path: data/train-00000-of-00001.parquet pretty_name: "Activite Detaillee De La Cour D Appel De Commerce De Casab | Africa (Morocco Open Data)" --- # Activite Detaillee De La Cour D Appel De Commerce De Casab | Africa (Morocco Open Data) **8 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-8-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 **8 rows** from **Morocco Open Data**, covering **Activite Detaillee De La Cour D Appel De Commerce De Casab**. 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 de la Cour d'appel de commerce de Casablanca 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 | 8 | | 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` | 8 | 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. | `43da8655-f491-4d4c-af28-ae2a6c3269dc: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_2020` | `int64` | Source column from the original resource. | `18` | | `d_2021` | `int64` | Source column from the original resource. | `343` | | `d_2021_2` | `int64` | Source column from the original resource. | `361` | | `d_2021_3` | `int64` | Source column from the original resource. | `334` | | `d_2021_4` | `int64` | Source column from the original resource. | `27` | | `source_provider` | `string` | Publishing organization. | `MJ` | | `source_dataset` | `string` | Source dataset or package title. | `Activité détaillée de la Cour d'appel de commerce de Casablanca-2021` | | `source_resource` | `string` | Source resource title, table name, or file name. | `النشاط المفصل لمحكمة الاستئناف التجارية بالدارالبيضاء.xlsx` | | `source_package_id` | `string` | Source package identifier. | `5bc0acbd-e6b4-48e5-be00-9e94a6e784da` | | `source_resource_id` | `string` | Source resource identifier. | `43da8655-f491-4d4c-af28-ae2a6c3269dc` | | `source_url` | `string` | Original source URL or download URL. | `https://data.gov.ma/data/fr/dataset/5bc0acbd-e6b4-48e5-be00-9e94a6e78...` | | `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-de-la-cour-d-appel-de-commerce-de-casab-b86d93b6") 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-de-la-cour-d-appel-de-commerce-de-casablanca-2021) - **Publisher:** MJ - **Portal:** [https://data.gov.ma/data](https://data.gov.ma/data) - **Resource:** [النشاط المفصل لمحكمة الاستئناف التجارية بالدارالبيضاء.xlsx](https://data.gov.ma/data/fr/dataset/5bc0acbd-e6b4-48e5-be00-9e94a6e784da/resource/43da8655-f491-4d4c-af28-ae2a6c3269dc/download/-.xlsx) - **License:** [Open Data Commons Open Database License](https://opendatacommons.org/licenses/odbl/) - **Retrieved/generated:** `2026-07-16T22:12:09Z` - **Hugging Face repo:** [electricsheepafrica/africa-morocco-activite-detaillee-de-la-cour-d-appel-de-commerce-de-casab-b86d93b6](https://huggingface.co/datasets/electricsheepafrica/africa-morocco-activite-detaillee-de-la-cour-d-appel-de-commerce-de-casab-b86d93b6) ## 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_de_la_cour_d_appel_de_commerce_de_casab_b86d93_2026, title = {Activite Detaillee De La Cour D Appel De Commerce De Casab | Africa (Morocco Open Data)}, author = {MJ}, year = {2026}, url = {https://data.gov.ma/data/dataset/activite-detaillee-de-la-cour-d-appel-de-commerce-de-casablanca-2021}, publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-morocco-activite-detaillee-de-la-cour-d-appel-de-commerce-de-casab-b86d93b6}} } ``` ## 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-de-la-cour-d-appel-de-commerce-de-casablanca-2021