A Flask web application to analyze video game sales data which includes historical sales analysis, regional distribution of games, and machine learning-based sales predictions.
This Video Game Sales Analyzer was developed as part of my journey to understand data analysis and web development. The project combines my passion for games with practical data science skills, creating a simple but effective interactive platform to explore historical video game sales trends.
- Source: Video Games Sales Dataset from Kaggle
- Creator: Gregory Smith
- Contents: 16,500+ video games with sales data
- Historical sales analysis
- Regional sales distribution
- Sales prediction using Linear Regression
- Flask (Web Framework)
- SQLite (Database)
- Pandas (Data Processing)
- Matplotlib (Visualization)
- Scikit-learn (Machine Learning)
- Python 3.8 or higher
- pip (Python package installer)
- Git
- Clone the Repository
git clone https://github.com/yourusername/video-game-sales-analyzer.git
cd video-game-sales-analyzer- Virtual Environment Setup Create Virtual Environment
python -m venv venvActivate Virtual Environment For Windows:
venv\Scripts\activateFor macOS/Linux:
source venv/bin/activate- Install Dependencies
pip install -r requirements.txt- Run the Application
flask runThe application will be available at http://localhost:5000