--- 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: "Consommation nationale de gaz butane par type de conditionnement | Africa (Côte d'Ivoire official open data)" --- # Consommation nationale de gaz butane par type de conditionnement | Africa (Côte d'Ivoire official open data) 6 rows - 1 Africa country - not-applicable - Repackaged by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica) ![rows](https://img.shields.io/badge/rows-6-blue) ![countries](https://img.shields.io/badge/countries-1-green) ![years](https://img.shields.io/badge/years-not-applicable-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:** [Consommation nationale de gaz butane par type de conditionnement](https://data.gouv.ci/datasets/cleaned-consommation-nationale-du-gaz-butane-par-type-de-conditionnement) - **Publisher:** Direction Générale des hydrocarbures (DGH) - Ministère en charge du Pétrole et de l'Energie - **Resource:** [Consommation nationale de gaz butane par type de conditionnement CSV export](https://data.gouv.ci/data-fair/api/v1/datasets/cleaned-consommation-nationale-du-gaz-butane-par-type-de-conditionnement/full) - **Format:** `CSV` - **License:** [Other open license]() - **Packaging mode:** `tabular_resource` ## Geographic coverage 1 Africa country: | Country | Rows | First year | Last year | Name | |---------|-----:|-----------:|----------:|------| | `CIV` | 6 | n/a | n/a | `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. | `cleaned-consommation-nationale-du-gaz-butane-par-type-de-conditionnement` | | `country_iso3` | `category` | ISO3 country code. | `CIV` | | `country_name` | `category` | Country name. | `Côte d'Ivoire` | | `type_de_conditionnement` | `string` | Source column. | `B6` | | `quantite_tm` | `int64` | Source column. | `209968` | | `proportion` | `float64` | Source column. | `65.72` | | `source_period_start_year` | `Int64` | First year inferred from source resource metadata. | `` | | `source_period_end_year` | `Int64` | Last year inferred from source resource metadata. | `` | | `source_period_label` | `string` | Human-readable period inferred from source resource metadata. | `` | | `source_provider` | `category` | Publishing organization. | `Direction Générale des hydrocarbures (DGH) - Ministère en charge du Pétr` | | `source_dataset` | `category` | Source package title. | `Consommation nationale de gaz butane par type de conditionnement` | | `source_resource` | `category` | Source resource title. | `Consommation nationale de gaz butane par type de conditionnement CSV exp` | | `source_package_id` | `category` | CKAN package UUID. | `cleaned-consommation-nationale-du-gaz-butane-par-type-de-conditionnement` | | `source_resource_id` | `category` | CKAN resource UUID. | `cleaned-consommation-nationale-du-gaz-butane-par-type-de-conditionnement` | | `source_url` | `category` | Original source resource URL. | `https://data.gouv.ci/data-fair/api/v1/datasets/cleaned-consommation-nati` | | `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-consommation-nationale-de-gaz-butane-par-type-de-condition-38500d1d") 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_consommation_nationale_de_gaz_butane_par_type_de_condition_2026, title = {Consommation nationale de gaz butane par type de conditionnement | Africa (Côte d'Ivoire official open data)}, author = {Direction Générale des hydrocarbures (DGH) - Ministère en charge du Pétrole et de l'Energie}, year = {2026}, url = {https://data.gouv.ci/datasets/cleaned-consommation-nationale-du-gaz-butane-par-type-de-conditionnement}, publisher = {HuggingFace Datasets, repackaged by Electric Sheep Africa}, howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-cote-d-ivoire-consommation-nationale-de-gaz-butane-par-type-de-condition-38500d1d}} } ``` ## License Released under [Other open license](). Original data (c) Direction Générale des hydrocarbures (DGH) - Ministère en charge du Pétrole et de l'Energie. 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/cleaned-consommation-nationale-du-gaz-butane-par-type-de-conditionnement/full