Dataset Viewer
Auto-converted to Parquet Duplicate
source_record_id
stringclasses
1 value
country_iso3
stringclasses
1 value
country_name
stringclasses
1 value
source_sheet
stringclasses
1 value
methode_de_collecte
stringclasses
1 value
mode_de_calcul
stringclasses
1 value
frequence_de_production
stringclasses
1 value
delai_de_diffusion
stringclasses
1 value
indicateur_diffuse
stringclasses
1 value
niveau_de_desagregation
stringclasses
1 value
statut_de_l_indicateur
stringclasses
1 value
unite_echelle
stringclasses
1 value
source
stringclasses
1 value
methode_de_acces
stringclasses
1 value
source_period_start_year
int64
source_period_end_year
int64
source_period_label
stringclasses
0 values
source_provider
stringclasses
1 value
source_dataset
stringclasses
1 value
source_resource
stringclasses
1 value
source_package_id
stringclasses
1 value
source_resource_id
stringclasses
1 value
source_url
stringclasses
1 value
license_id
stringclasses
1 value
retrieved_at
stringclasses
1 value
996d04b0-3154-4d85-b54f-00a524d30e8f:metadata:0
SEN
Senegal
METADATA
Données d'observation
Différence
saisonière
annuelle (avant la fin de saison courante)
non
zone
définitif
unité
ANACIM
sur demande
null
null
null
ANACIM
Déficit /Excédent pluviométrique
META DONNEES
abffbd69-e914-4afa-997f-6e2ce6cdfd40
996d04b0-3154-4d85-b54f-00a524d30e8f
https://agridata.ansd.sn/dataset/abffbd69-e914-4afa-997f-6e2ce6cdfd40/resource/996d04b0-3154-4d85-b54f-00a524d30e8f/download/metadata.xlsx
odc-odbl
2026-07-27T11:04:43Z

Deficit Excedent Pluviometrique | Africa (ANACIM)

1 rows - 1 Africa country/area - detected - source table - Engineered by Electric Sheep Africa

rows countries period indicators license

TL;DR

This dataset contains 1 rows from ANACIM, covering Deficit Excedent Pluviometrique. 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: META DATA de l'indicateur du déficit ou excédent pluviométrique

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: source_period_start_year.
  • Time coverage basis: source_period_start_year.
  • Recommended join keys: country_iso3 where available plus source-specific keys.

Coverage

Dimension Value
Rows 1
Countries/areas 1
First period detected
Last period detected
Indicators 0
Columns 25
Source format XLSX

Geographic Coverage

Top areas shown below, sorted by row count when available:

Area Rows First year Last year Name
SEN 1 detected detected Senegal

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. 996d04b0-3154-4d85-b54f-00a524d30e8f:metadata:0
country_iso3 dictionary<values=string, indices=int8, ordered=0> ISO3 country or area code. SEN
country_name dictionary<values=string, indices=int8, ordered=0> Country or area name. Senegal
source_sheet string Source column from the original resource. METADATA
methode_de_collecte string Source column from the original resource. Données d'observation
mode_de_calcul string Source column from the original resource. Différence
frequence_de_production string Source column from the original resource. saisonière
delai_de_diffusion string Source column from the original resource. annuelle (avant la fin de saison courante)
indicateur_diffuse string Source column from the original resource. non
niveau_de_desagregation string Source column from the original resource. zone
statut_de_l_indicateur string Source column from the original resource. définitif
unite_echelle string Source column from the original resource. unité
source string Source column from the original resource. ANACIM
methode_de_acces string Source column from the original resource. sur demande
source_period_start_year int64 Start year inferred from source metadata. ``
source_period_end_year int64 End year inferred from source metadata. ``
source_period_label string Source column from the original resource. ``
source_provider dictionary<values=string, indices=int8, ordered=0> Publishing organization. ANACIM
source_dataset dictionary<values=string, indices=int8, ordered=0> Source dataset or package title. Déficit /Excédent pluviométrique
source_resource dictionary<values=string, indices=int8, ordered=0> Source resource title, table name, or file name. META DONNEES
source_package_id dictionary<values=string, indices=int8, ordered=0> Source package identifier. abffbd69-e914-4afa-997f-6e2ce6cdfd40
source_resource_id dictionary<values=string, indices=int8, ordered=0> Source resource identifier. 996d04b0-3154-4d85-b54f-00a524d30e8f
source_url dictionary<values=string, indices=int8, ordered=0> Original source URL or download URL. https://agridata.ansd.sn/dataset/abffbd69-e914-4afa-997f-6e2ce6cdfd40...
license_id dictionary<values=string, indices=int8, ordered=0> Source license identifier. odc-odbl
retrieved_at dictionary<values=string, indices=int8, ordered=0> UTC source retrieval timestamp from the Electric Sheep Africa pipeline. 2026-07-27T11:04:43Z

Usage

from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-senegal-deficit-excedent-pluviometrique-eaed970a")
df = ds["train"].to_pandas()
print(df.head())

Inspect Columns

print(df.info())
print(df.head())

Filter By Geography

if "country_iso3" in df.columns:
    sample = df[df["country_iso3"] == "SEN"]

Time-Series Pattern

if "value" in df.columns and "source_period_start_year" in df.columns:
    trend = df.sort_values("source_period_start_year")

Pivot For Analysis

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

  • Canonical time field: source_period_start_year.
  • 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

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
  • Build time-series views and period-over-period comparisons
  • Check missingness before modeling
  • Use country_iso3 as the safest geography join key when present

Citation

@misc{electric_sheep_africa_africa_senegal_deficit_excedent_pluviometrique_eaed970a_2026,
  title        = {Deficit Excedent Pluviometrique | Africa (ANACIM)},
  author       = {ANACIM},
  year         = {2026},
  url          = {https://agridata.ansd.sn/dataset/deficitouexcedentpluviometrique},
  publisher    = {Hugging Face Datasets, engineered by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-senegal-deficit-excedent-pluviometrique-eaed970a}}
}

License

Released under Open Data Commons Open Database License.

Original data is published by ANACIM. 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-12 by the Electric Sheep Africa README system. Source URL: https://agridata.ansd.sn/dataset/deficitouexcedentpluviometrique

Downloads last month
16

Collection including electricsheepafrica/africa-senegal-deficit-excedent-pluviometrique-eaed970a