← All Projects

SuperKart Retail Sales Forecasting

Predicting per-product store sales for the upcoming quarter with linear regression

Overview

SuperKart wants to forecast how much revenue each product will bring in at each store next quarter.

Methodology

flowchart LR
  A[Raw Data] --> B[Clean & Encode]
  B --> C[EDA]
  C --> D[Train/Test Split]
  D --> E["Linear Regression"]
  E --> F["Tune (Cross-Validation)"]
  F --> G["Evaluate: R2 / RMSE"]

The Data

I worked with about 8,800 product-store sales records covering product details and store characteristics.

Exploratory Analysis

I explored how each product and store feature relates to sales before building any model.

Key Drivers of Sales

A handful of store and product traits explain most of the differences in sales.

Modeling & Results

I built a linear regression model that predicts sales accurately and passes statistical checks.

Key Takeaways

The model can forecast next quarter's sales and points to where SuperKart should focus.

More Visualizations

Tech Stack

Attribution

This project was completed as part of the MIT Applied Data Science Program (MIT IDSS / Great Learning). The program provided the case-study scaffolding; the analysis, code, and results are my own. Published with permission, for portfolio use only.