The dataset viewer is taking too long to fetch the data. Try to refresh this page.
Error code: ClientConnectionError
Human Development Index | Africa (Ghana Open Data)
211 rows - 1 Africa country/area - 2005 - source table - Engineered by Electric Sheep Africa
TL;DR
This dataset contains 211 rows from Ghana Open Data, covering Human Development Index. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly loading examples.
What This Dataset Measures
Education datasets help analysts study access, participation, learning systems, infrastructure, and outcomes across places and periods.
Source-provided context: Human Development Index of first 70 countries in the world
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:
year. - Time coverage basis: year.
- Recommended join keys:
country_iso3where available plus source-specific keys.
Coverage
| Dimension | Value |
|---|---|
| Rows | 211 |
| Countries/areas | 1 |
| First period | 2005 |
| Last period | 2005 |
| Indicators | 0 |
| Columns | 16 |
| Source format | CSV |
Geographic Coverage
Top areas shown below, sorted by row count when available:
| Area | Rows | First year | Last year | Name |
|---|---|---|---|---|
GHA |
211 | 2005 | 2005 | Ghana |
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. | ad142e6a-3de2-46f1-9bac-7a5289c9541e:0 |
country_iso3 |
string |
ISO3 country or area code. | GHA |
country_name |
string |
Country or area name. | Ghana |
year |
int64 |
Observation year. | 2005 |
doctype_html_public_w3c_dtd_xhtml_rdfa_1_0_en |
string |
Source column from the original resource. | "https://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> |
source_period_start_year |
int64 |
Start year inferred from source metadata. | 2005 |
source_period_end_year |
int64 |
End year inferred from source metadata. | 2005 |
source_period_label |
string |
Source column from the original resource. | 2005 |
source_provider |
string |
Publishing organization. | Official government open data portal |
source_dataset |
string |
Source dataset or package title. | Human Development Index |
source_resource |
string |
Source resource title, table name, or file name. | Human Development Index |
source_package_id |
string |
Source package identifier. | 18a29f21-bf5f-45ed-9821-ff12a62c4cee |
source_resource_id |
string |
Source resource identifier. | ad142e6a-3de2-46f1-9bac-7a5289c9541e |
source_url |
string |
Original source URL or download URL. | http://data.gov.gh/sites/default/files/HDR.csv |
license_id |
string |
Source license identifier. | cc-by |
retrieved_at |
string |
UTC source retrieval timestamp from the Electric Sheep Africa pipeline. | 2026-07-18T20:11:31Z |
Usage
from datasets import load_dataset
ds = load_dataset("electricsheepafrica/africa-ghana-human-development-index-18ecf6b0")
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"] == "GHA"]
Time-Series Pattern
if "value" in df.columns and "year" in df.columns:
trend = df.sort_values("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:
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
- Source: Ghana Open Data
- Publisher: Ghana official open data portal
- Portal: http://data.gov.gh
- Resource: Human Development Index
- License: CC BY 4.0
- Retrieved/generated:
2026-07-18T20:18:10Z - Hugging Face repo: electricsheepafrica/africa-ghana-human-development-index-18ecf6b0
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
- Compare education indicators by geography
- Track participation or completion trends
- Join with population and poverty indicators
- Build time-series views and period-over-period comparisons
- Check missingness before modeling
- Use
country_iso3as the safest geography join key when present
Citation
@misc{electric_sheep_africa_africa_ghana_human_development_index_18ecf6b0_2005,
title = {Human Development Index | Africa (Ghana Open Data)},
author = {Ghana official open data portal},
year = {2005},
url = {http://data.gov.gh/dataset/human-development-index-2},
publisher = {Hugging Face Datasets, engineered by Electric Sheep Africa},
howpublished = {\url{https://huggingface.co/datasets/electricsheepafrica/africa-ghana-human-development-index-18ecf6b0}}
}
License
Released under CC BY 4.0.
Original data is published by Ghana official open data portal. 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: http://data.gov.gh/dataset/human-development-index-2
- Downloads last month
- 22