Logo Lanfrica

HermonaDev/fintech-review-analytics-week2

Domain:

digital infrastructure

Record type:

project
Creator:
Her
Host:
Google Play review analysis for three Ethiopian banks; scraping, sentiment & thematic analysis, and stakeholder-ready insights. # Fintech Customer Experience Analytics Analysis of Google Play Store reviews for Ethiopian banking apps to identify customer satisfaction drivers and pain points. ## πŸ“Š Project Overview Omega Consultancy engaged this analysis to help three Ethiopian banks improve their mobile app customer experience: - **Commercial Bank of Ethiopia (CBE)** - **Bank of Abyssinia (BOA)** - **Dashen Bank** **Objective:** Scrape, analyze, and visualize 1,200+ user reviews to provide actionable recommendations for app improvement. ## πŸš€ Quick Start ### 1. Installation ```bash git clone github.com cd fintech-review-analytics-week2 pip install -r requirements.txt ``` ### 2. Run Full Pipeline ```bash # 1. Data collection python scripts/scrape_reviews.py # 2. Data cleaning python scripts/clean_data.py # 3. Sentiment analysis python scripts/sentiment_analysis.py --sample 2000 # 4. Thematic analysis python scripts/thematic_analysis.py # 5. Database setup python scripts/database_setup.py # 6. Visualizations & insights python scripts/final_visualizations.py ``` ## πŸ“ Project Structure ``` fintech-review-analytics-week2/ β”œβ”€β”€ scripts/ # Analysis pipeline β”‚ β”œβ”€β”€ scrape_reviews.py # Google Play scraping β”‚ β”œβ”€β”€ clean_data.py # Data preprocessing β”‚ β”œβ”€β”€ sentiment_analysis.py # DistilBERT sentiment analysis β”‚ β”œβ”€β”€ thematic_analysis.py # TF-IDF keyword extraction β”‚ β”œβ”€β”€ database_setup.py # PostgreSQL/SQLite setup β”‚ └── final_visualizations.py # Insights & charts β”œβ”€β”€ data/ # Processed datasets β”‚ β”œβ”€β”€ cleaned_bank_reviews.csv β”‚ β”œβ”€β”€ full_sentiment_analysis.csv β”‚ └── bank_reviews.db (SQLite) β”œβ”€β”€ outputs/ # Generated visualizations β”‚ β”œβ”€β”€ sentiment_rating_by_bank.png β”‚ β”œβ”€β”€ sentiment_trends.png β”‚ β”œβ”€β”€ wordclouds.png β”‚ └── rating_distribution_by_bank.png β”œβ”€β”€ docs/ # Reports β”‚ β”œβ”€β”€ interim_report.md β”‚ └── final_report.md β”œβ”€β”€ tests/ …