A small football analytics project focused on Panathinaikos, using match data from the Greek Super League. The project analyzes match results, goals scored and conceded, cumulative points, and team form.
- Match data from Football-Data.co.uk (Greek Super League)
A small football analytics project focused on Panathinaikos, using match data from the Greek Super League. The project analyzes match results, goals scored and conceded, cumulative points, and team form.
- Match data from Football-Data.co.uk (Greek Super League)
panathinaikos/ ├── data/ │ └── panathinaikos_matches.csv ├── outputs/ │ ├── goals_for_against.png │ ├── cumulative_points.png │ └── form_last5.png ├── src/ │ ├── 01_load_and_filter.py │ └── 02_visualize.py ├── requirements.txt └── README.md
pip install -r requirements.txt
python src/01_load_and_filter.py
python src/02_visualize.py
Notes
This project is intended for educational and portfolio purposes.
Data is processed using pandas and visualized with matplotlib.
📌 **ΜΗΝ αλλάξεις paths ή ονόματα εικόνων**.
---
# 💾 ΒΗΜΑ 2: Save
- **Ctrl + S** στο `README.md`
- Έλεγξε ότι στο VS Code preview **φαίνονται οι εικόνες**
---
# 🔁 ΒΗΜΑ 3: Commit & Push
Στο terminal:
```bash
git add README.md
git commit -m "Add README with analysis and visualizations"
git push

