Logo Lanfrica

Ruhama-Beshada/Financial-inclusion-forecasting-system-week10

Domain:

socioeconomic

Record type:

project
Creator:
Ruh
Host:
# Financial-inclusion-forecasting-system-week10 ## πŸ“Œ Project Overview This project builds a **financial inclusion forecasting system for Ethiopia**. It covers the **full data science pipeline** β€” from raw data ingestion and enrichment to forecasting and an interactive dashboard. The goal is to help policymakers and analysts **understand trends and predict future financial inclusion indicators** using historical data. --- ## 🧱 Project Folder Structure ethiopia-fi-forecast/ β”œβ”€β”€ data/ β”‚ β”œβ”€β”€ raw/ # Original datasets β”‚ β”‚ β”œβ”€β”€ ethiopia_fi_unified_data.xlsx β”‚ β”‚ β”œβ”€β”€ Additional Data Points Guide.xlsx β”‚ β”‚ └── reference_codes.xlsx β”‚ └── processed/ # Cleaned and enriched datasets + forecast outputs β”‚ β”œβ”€β”€ ACC_OWNERSHIP_forecast.xlsx β”‚ β”œβ”€β”€ all_aggregated_forecasts.xlsx β”‚ β”œβ”€β”€ ethiopia_fi_features.xlsx β”‚ └── ethiopia_fi_unified_data_enriched.xlsx β”œβ”€β”€ notebooks/ # Jupyter notebooks for each task β”‚ β”œβ”€β”€ task1_data_exploration.ipynb β”‚ β”œβ”€β”€ task2_forecasting.ipynb β”‚ β”œβ”€β”€ task3_modeling.ipynb β”‚ └── task4_analysis.ipynb β”œβ”€β”€ src/ # Python helper scripts β”‚ β”œβ”€β”€ __init__.py β”‚ └── data_utils.py β”œβ”€β”€ reports/ β”‚ └── figures/ # Visualizations and charts β”œβ”€β”€ models/ # Forecasting models (saved if needed) β”œβ”€β”€ dashboard/ # Dash interactive dashboard β”‚ └── app.py β”œβ”€β”€ tests/ β”‚ └── test_basic.py β”œβ”€β”€ requirements.txt β”œβ”€β”€ README.md └── .gitignore --- ## βš™οΈ Environment Setup ### 1️⃣ Create Conda Environment bash conda create -n ethiopia-fi python=3.10 -y conda activate ethiopia-fi ### 2️⃣ Install Dependencies pip install -r requirements.txt # πŸ§ͺ Task Breakdown ## βœ… Task 1: Data Exploration & Cleaning **Location:** `notebooks/task1_data_exploration.ipynb` **What was done:** - Loaded raw Excel datasets from `data/raw/` - Explored: - **Record types** (`observation`, `event`, `impact_link`) - **Pillars** (`A …

Languages