# Ethiopia Financial Inclusion Forecasting System
**Selam Analytics** | Financial Inclusion Forecasting for Ethiopia 2025β2027
---
## πͺπΉ Overview
A data science system that forecasts Ethiopia's progress on the two core dimensions of financial inclusion (as defined by the World Bank Global Findex):
| Dimension | Indicator | 2024 Baseline |
|-----------|-----------|---------------|
| **Access** | Account Ownership Rate | 49% |
| **Usage** | Digital Payment Adoption | ~35% |
The system integrates historical Findex survey data, operator-reported metrics, infrastructure data, and an event impact model to produce 2025β2027 scenario forecasts.
---
## ποΈ Project Structure
```
ethiopia-fi-forecast/
βββ data/
β βββ raw/ # Original Findex + reference CSVs
β βββ processed/ # Enriched dataset, forecast outputs
βββ notebooks/
β βββ 01_data_exploration_enrichment.ipynb # Task 1: EDA + enrichment
β βββ 02_exploratory_data_analysis.ipynb # Task 2: Visualizations + insights
β βββ 03_event_impact_modeling.ipynb # Task 3: Association matrix + validation
β βββ 04_forecasting_access_usage.ipynb # Task 4: 2025-2027 forecasts
βββ src/
β βββ __init__.py
β βββ data_loader.py # Data loading and preprocessing
β βββ impact_model.py # Event impact modeling engine
β βββ forecaster.py # Time-series forecasting framework
βββ dashboard/
β βββ app.py # Streamlit interactive dashboard
βββ tests/
β βββ test_data_loader.py
β βββ test_impact_model.py
β βββ test_forecaster.py
βββ reports/
β βββ figures/ # Generated visualizations
βββ requirements.txt
βββ README.md
```
---
## π Quick Start
### 1. Clone and install dependencies
```bash
git clone
github.com
cd ethiopia-fi-forecast
pip install -r requirements.txt
```
### 2. Run the Interactive Dashboard
```bash
streamlit run dashboa β¦