````markdown
# 🌞 Cross-Country Solar Data Analysis – Week 0 Challenge
Welcome to the Week 0 challenge of 10 Academy's Artificial Intelligence Mastery program. This repository contains the complete solution to the solar farm analysis project, including data profiling, exploratory analysis, cross-country comparison, and an interactive dashboard.
---
## 🚀 Project Objective
MoonLight Energy Solutions is seeking data-driven insights to guide sustainable investments in solar farms across **Benin**, **Sierra Leone**, and **Togo**. This project analyzes key environmental metrics from each country to identify high-potential regions for solar deployment.
---
## 📁 Repository Structure
```bash
.
├── data/ # Raw & cleaned data (ignored in git)
├── notebooks/ # EDA and comparison notebooks
│ ├── benin_eda.ipynb
│ ├── sierra_leone_eda.ipynb
│ ├── togo_eda.ipynb
│ └── compare_countries.ipynb
├── app/ # Streamlit dashboard
│ ├── __init__.py
│ ├── main.py
│ └── utils.py
├── dashboard_screenshots/ # Screenshot(s) of Streamlit app
├── .github/workflows/ # GitHub Actions CI pipeline
│ └── ci.yml
├── .gitignore
├── requirements.txt
├── README.md # Project documentation
└── reports/ # Final report (Markdown or PDF)
````
---
## 🧪 Methodology
This project followed a structured data science pipeline:
1. **Git & Environment Setup**
* Repo initialized with `.gitignore`, `requirements.txt`, and GitHub Actions CI.
* Environment reproducibility ensured via `venv` and proper commit hygiene.
2. **Data Profiling & Cleaning**
* Handled missing values and outliers using statistical techniques.
* Computed Z-scores for key metrics (GHI, DNI, DHI, ModA, ModB, WS).
* Cleaned datasets exported to `/data` folder for analysis.
3. **Exploratory Data Analysis (EDA)**
* Summary stats, correlation heatmaps, and time series visualizations.
* Impact of cleaning events analyzed.
* Wind …