Logo Lanfrica

elu-di/ethiopia-fi-forecast

Domain:

socioeconomic

Record type:

projectsoftware
Creator:
elu
Host:
# 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 …