--- license: other language: - en task_categories: - tabular-classification - tabular-regression multilinguality: monolingual size_categories: - n<1K tags: - tabular - csv - africa - cote-d-ivoire - official-statistics - open-data configs: - config_name: default data_files: - split: train path: data/train-00000-of-00001.parquet pretty_name: "Répertoire des chaînes de télévision et de bouquets autorisés en Côte d'Ivoire | Africa (Côte d'Ivoire official open data)" --- # Répertoire des chaînes de télévision et de bouquets autorisés en Côte d'Ivoire | Africa (Côte d'Ivoire official open data) 12 rows - 1 Africa country - 2021 - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica) ![rows](https://img.shields.io/badge/rows-12-blue) ![countries](https://img.shields.io/badge/countries-1-green) ![years](https://img.shields.io/badge/years-2021-orange) ![indicators](https://img.shields.io/badge/indicators-0-purple) ![license](https://img.shields.io/badge/license-other-lightgrey) ## TL;DR This dataset packages one official `CSV` resource from **Côte d'Ivoire** as ML-ready Parquet. The source file is the provenance boundary; all usable indicators or tabular columns from the resource stay together in this repo. ## About the source - **Source:** [Répertoire des chaînes de télévision et de bouquets autorisés en Côte d'Ivoire](https://data.gouv.ci/datasets/repertoire-des-chaines-de-television-et-bouquets-autorises-de-cote-d'ivoire) - **Publisher:** http://www.communication.gouv.ci/ - **Resource:** [Répertoire des chaînes de télévision et de bouquets autorisés en Côte d'Ivoire CSV export](https://data.gouv.ci/data-fair/api/v1/datasets/repertoire-des-chaines-de-television-et-bouquets-autorises-de-cote-d'ivoire/full) - **Format:** `CSV` - **License:** [Other open license]() - **Packaging mode:** `tabular_resource` ## Geographic coverage 1 Africa country: | Country | Rows | First year | Last year | Name | |---------|-----:|-----------:|----------:|------| | `CIV` | 12 | 2021 | 2021 | `Côte d'Ivoire` | ## Indicators or Resource Contents - This source file is packaged as a normalized tabular resource. ## Schema | Column | Type | Description | Example | |--------|------|-------------|---------| | `source_record_id` | `string` | Stable row identifier for tabular resources. | `repertoire-des-chaines-de-television-et-bouquets-autorises-de-cote-d'ivo` | | `country_iso3` | `category` | ISO3 country code. | `CIV` | | `country_name` | `category` | Country name. | `Côte d'Ivoire` | | `year` | `Int64` | Observation year. | `2021` | | `titulaire_dautorisation` | `string` | Source column. | `GROUPE RTI` | | `nombre_de_chaines` | `int64` | Source column. | `10` | | `responsable` | `string` | Source column. | `Fausseni DEMBELE Directeur Général` | | `responsable_adjoint` | `string` | Source column. | `` | | `nom_du_service` | `string` | Source column. | `RTI 1` | | `type_de_service` | `string` | Source column. | `TELEVISIONS DE SERVICE PUBLIC` | | `situation_geographique` | `string` | Source column. | `COCODY` | | `annee_dautorisation` | `string` | Source column. | `autorisée en 1962` | | `observation` | `string` | Source column. | `En activité` | | `image` | `string` | Source column. | `https://data354-public-assets.s3.eu-west-3.amazonaws.com/data.gouv.ci/im` | | `source_period_start_year` | `Int64` | First year inferred from source resource metadata. | `2021` | | `source_period_end_year` | `Int64` | Last year inferred from source resource metadata. | `2021` | | `source_period_label` | `category` | Human-readable period inferred from source resource metadata. | `2021` | | `source_provider` | `category` | Publishing organization. | `http://www.communication.gouv.ci/` | | `source_dataset` | `category` | Source package title. | `Répertoire des chaînes de télévision et de bouquets autorisés en Côte d'` | | `source_resource` | `category` | Source resource title. | `Répertoire des chaînes de télévision et de bouquets autorisés en Côte d'` | | `source_package_id` | `category` | CKAN package UUID. | `repertoire-des-chaines-de-television-et-bouquets-autorises-de-cote-d'ivo` | | `source_resource_id` | `category` | CKAN resource UUID. | `repertoire-des-chaines-de-television-et-bouquets-autorises-de-cote-d'ivo` | | `source_url` | `category` | Original source resource URL. | `https://data.gouv.ci/data-fair/api/v1/datasets/repertoire-des-chaines-de` | | `license_id` | `category` | Source license identifier. | `other-open` | | `retrieved_at` | `category` | UTC retrieval timestamp. | `2026-07-27T10:23:33Z` | ## Usage ```python from datasets import load_dataset ds = load_dataset("electricsheepafrica/africa-cote-d-ivoire-repertoire-des-chaines-de-television-et-de-bouquets-autori-4863a2ad") df = ds["train"].to_pandas() print(df.head()) ``` ### Filter to one country ```python sample_country = df[df["country_iso3"] == "CIV"] ``` ### 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_cote_d_ivoire_repertoire_des_chaines_de_television_et_de_bouquets_autori_2021, title = {Répertoire des chaînes de télévision et de bouquets autorisés en Côte d'Ivoire | Africa (Côte d'Ivoire official open data)}, author = {http://www.communication.gouv.ci/}, year = {2021}, url = {https://data.gouv.ci/datasets/repertoire-des-chaines-de-television-et-bouquets-autorises-de-cote-d'ivoire}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-cote-d-ivoire-repertoire-des-chaines-de-television-et-de-bouquets-autori-4863a2ad}} } ``` ## License Released under [Other open license](). Original data (c) http://www.communication.gouv.ci/. 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-27 via the Electric Sheep pipeline. Source URL: https://data.gouv.ci/data-fair/api/v1/datasets/repertoire-des-chaines-de-television-et-bouquets-autorises-de-cote-d'ivoire/full