# ethiopia-fi-forecast
Ethiopia Financial Inclusion Forecasting (Selam Analytics)
π Project Overview
This project provides a data-driven framework to analyze and forecast financial inclusion trajectories in Ethiopia. Using a unified dataset of World Bank Findex surveys, National Bank of Ethiopia (NBE) reports, and private sector milestones (Telebirr, Safaricom/M-Pesa), this tool identifies why digital payment usage is exploding while account ownership remains plateaued.
The "Inclusion Gap" Challenge: Despite reaching over 139 million mobile money accounts in 2025, account ownership rates have only grown moderately since 2021. This repository models the impact of key policy enablersβlike the Fayda National ID and FX Liberalizationβto predict if Ethiopia will meet its 2027 inclusion targets.
π Project Structure
The repository is organized following data science best practices:
Plaintext
βββ data/
β βββ raw/ # Immutable original datasets (Findex, NBE, IMF)
β βββ processed/ # Unified schema after task-1 cleaning
β βββ enrichment_log.md # Documentation of new proxy indicators added
βββ notebooks/
β βββ 01_data_cleaning.ipynb # Task 1: Unification & Enrichment
β βββ 02_eda_analysis.ipynb # Task 2: Trend & Gap Analysis
βββ src/
β βββ eda_engine.py # Custom Python class for automated EDA
β βββ forecasting.py # Time-series models (SARIMA/Prophet)
βββ reports/
β βββ insights_summary.pdf# Final analysis of the "Access Stagnation"
βββ reports/
| βββ figures/
βββ requirements.txt # Python dependencies
βββ README.md # You are here
π Getting Started
1. Installation
Clone the repository and install dependencies:
Bash
git clone
github.com
cd ethiopia-fi-forecasting
pip install -r requirements.txt
2. Running the Analysis
To view the Exploratory Data Analysis (Task 2):
Navigate to notebooks/02_eda_analysis.ipynb.
Use the EdaAnalysis class from src/ to β¦