Grocery Sales Prediction: A Step-by-Step ML Guide
From Data to Decisions: Predicting Grocery Sales for Smarter Retail Management
@kaggle.alnafi_sore_sales_data_set
From Data to Decisions: Predicting Grocery Sales for Smarter Retail Management
@kaggle.alnafi_sore_sales_data_set
This dataset contains historical sales data from a large grocery store located in Islamabad, Pakistan. With an average daily footfall of around 1,500 customers, the store serves a broad consumer base, making it ideal for analyzing and predicting sales trends.
In this project, we focus specifically on predicting the sale of rice by leveraging historical data from January 22, 2024, to October 14, 2024. Using this dataset, we trained a Random Forest Regressor model to forecast rice sales based on past patterns.
The dataset includes the following columns:
The goal of this project is to predict future sales of rice at this store using historical data. By accurately forecasting sales, the store can optimize inventory and improve stock management for this essential product.
CREATE TABLE train (
"date" TIMESTAMP,
"store" BIGINT,
"item" BIGINT,
"sales" BIGINT
);Anyone who has the link will be able to view this.