Logo Lanfrica

Salthacked/AI-Governance-Readiness-Index-for-Africa--AIGRI--2026

Record type:

project
Creator:
Sal
Host:
# AIGRI 2026: AI Governance Readiness Index for Africa An academically rigorous, Principal Component Analysis (PCA)-weighted indicator framework evaluating **AI safety and ethics governance readiness** across 30 African countries. AIGRI provides a governance-first, decolonial perspective on AI readiness that prioritizes regulatory capacity, data sovereignty, and civic space over commercial AI capabilities. ## πŸ“Š Quick Start ### View the Dashboard Open `dashboard/index.html` in a modern browser to explore: - **Country rankings** across three governance tiers (Pioneers, Emerging, Lagging) - **Interactive radar charts** showing performance across four pillars - **Regional comparisons** and detailed country profiles - **PCA methodology validation** and econometric analysis ### Run the Data Pipeline ```bash python src/pipeline.py ``` Generates PCA-weighted indicators and exports to `dashboard/data.json`. ### Generate Publication Figures ```bash python src/generate_plots.py ``` Creates high-resolution academic figures in `paper/figures/`. --- ## πŸ“ Project Structure ``` AIGRI-2026/ β”œβ”€β”€ dashboard/ # Interactive web application β”‚ β”œβ”€β”€ index.html # Main dashboard UI β”‚ β”œβ”€β”€ app.js # Core interactivity & navigation β”‚ β”œβ”€β”€ data.js # Data loading for local file:// mode β”‚ β”œβ”€β”€ styles.css # Publication-quality styling β”‚ β”œβ”€β”€ data.json # Generated: PCA-weighted results β”‚ └── README.md # Dashboard-specific documentation β”‚ β”œβ”€β”€ data/ # Research datasets & documentation β”‚ β”œβ”€β”€ raw_indicators.csv # 16 scored indicators (30 countries) β”‚ β”œβ”€β”€ country_metadata.csv # Macro-level validation variables β”‚ β”œβ”€β”€ indicator_sources.csv # Data source attribution β”‚ β”œβ”€β”€ codebook.md # Complete variable dictionary β”‚ └── desk_coding_protocol.md # Scoring rubrics & methodology β”‚ β”œβ”€β”€ src/ # Data pr …