# 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 β¦