CoolFace
Datasetpublic

electricsheepafrica/africa-somalia-afdb-commodity-prices-2016-8994774e

Afdb Commodity Prices 2016 | Africa (African Development Bank Group (inactive)) 51,922 rows - 1 Africa country/area - 1960-2016 - 1 indicator - Engineered by Electric Sheep Africa TL;DR This dataset contains 51,922 rows from African Development Bank Group (inactive), covering Afdb Commodity Prices 2016. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples. What This… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-somalia-afdb-commodity-prices-2016-8994774e.

sourceHugging Facecc-by-4.0updated 2mo agoView on Hugging Face
0likes12downloads
Dataset Card

Afdb Commodity Prices 2016 | Africa (African Development Bank Group (inactive))

51,922 rows - 1 Africa country/area - 1960-2016 - 1 indicator - Engineered by [Electric Sheep Africa](https://huggingface.co/electricsheepafrica)

rows countries period indicators license

TL;DR

This dataset contains 51,922 rows from African Development Bank Group (inactive), covering Afdb Commodity Prices 2016. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples.

What This Dataset Measures

Economic datasets help analysts examine production, prices, public finance, trade flows, market conditions, and macroeconomic change.

Source-provided context: http://opendataforafrica.org/AFDBCMPRC2016/afdb-commodity-prices-2016

How To Read This Dataset

  • —One row means: one indicator observation for one geography, time period, and optional source dimensions.
  • —Primary geography column: country_iso3.
  • —Best time column: year.
  • —Time coverage basis: year.
  • —Recommended join keys: country_iso3, year, indicator_id.

Coverage

DimensionValue
Rows51,922
Countries/areas1
First period1960
Last period2016
Indicators1
Columns23
Source formatXLSX

Geographic Coverage

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

AreaRowsFirst yearLast yearName
SOM51,92219602016Somalia

Indicators, Variables, Or Resource Contents

  • —afdb-commodity-prices-2016-8af6f3ff - AFDB Commodity Prices, 2016(sourceunitsunspecified)

Schema

ColumnTypeDescriptionExample
indicator_idstringStable source or Electric Sheep Africa indicator identifier.afdb-commodity-prices-2016-8af6f3ff
indicator_namestringHuman-readable indicator name.AFDB Commodity Prices, 2016
country_iso3stringISO3 country or area code.SOM
source_sheetstringSource column from the original resource.Sheet1
country_namestringCountry or area name.Somalia
yearint64Observation year.1960
valuedoubleNumeric observation value.1.63000011444
unitstringMeasurement unit, when supplied by the source.source_units_unspecified
dimension_indicator_codestringSource dimension retained during long-form normalization.CRUDE_PETRO
dimension_indicatornamestringSource dimension retained during long-form normalization.Crude oil, average($/bbl)
dimension_unitstringSource dimension retained during long-form normalization.$/bbl
dimension_frequencystringSource dimension retained during long-form normalization.M
source_period_start_yearint64Start year inferred from source metadata.2016
source_period_end_yearint64End year inferred from source metadata.2016
source_period_labeldictionary<values=string, indices=int8, ordered=0>Source column from the original resource.2016
source_providerdictionary<values=string, indices=int8, ordered=0>Publishing organization.African Development Bank Group (inactive)
source_datasetdictionary<values=string, indices=int8, ordered=0>Source dataset or package title.AFDB Commodity Prices, 2016
source_resourcedictionary<values=string, indices=int8, ordered=0>Source resource title, table name, or file name.AFDB Commodity Prices, 2016.xlsx
source_package_iddictionary<values=string, indices=int8, ordered=0>Source package identifier.4c65bf32-a069-46de-b90a-32e5bfe9b176
source_resource_iddictionary<values=string, indices=int8, ordered=0>Source resource identifier.96863ef0-db34-4a1a-b345-7c29ede0818c
source_urldictionary<values=string, indices=int8, ordered=0>Original source URL or download URL.https://data.humdata.org/dataset/4c65bf32-a069-46de-b90a-32e5bfe9b176...
license_iddictionary<values=string, indices=int8, ordered=0>Source license identifier.cc-by
retrieved_atdictionary<values=string, indices=int8, ordered=0>UTC source retrieval timestamp from the Electric Sheep Africa pipeline.2026-08-10T14:51:11Z

Usage

python
from datasets import load_dataset

ds = load_dataset("electricsheepafrica/africa-somalia-afdb-commodity-prices-2016-8994774e")
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"] == "SOM"]

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

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

  • —Build time-series dashboards
  • —Compare economic indicators
  • —Join with population or sector data
  • —Build time-series views and period-over-period comparisons
  • —Pivot to geography x period or indicator x period matrices
  • —Check missingness before modeling
  • —Use country_iso3 as the safest geography join key when present

Citation

bibtex
@misc{electric_sheep_africa_africa_somalia_afdb_commodity_prices_2016_8994774e_2016,
  title        = {Afdb Commodity Prices 2016 | Africa (African Development Bank Group (inactive))},
  author       = {African Development Bank Group (inactive)},
  year         = {2016},
  url          = {https://data.humdata.org/dataset/afdb-commodity-prices-2016},
  publisher    = {Hugging Face Datasets, engineered by Electric Sheep Africa},
  howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-somalia-afdb-commodity-prices-2016-8994774e}}
}

License

Released under CC BY 4.0.

Original data is published by African Development Bank Group (inactive). 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://data.humdata.org/dataset/afdb-commodity-prices-2016