Mega Marts Sales Prediction
Prediction of Store Sales
@kaggle.pavan9065_sales_prediction
Prediction of Store Sales
@kaggle.pavan9065_sales_prediction
The sales in the mega marts are critical to make them sustainable. As a matter of fact, the rise of several marts has created buyers of different categories who are critical about the quality of product at the right price.
Here, the data science & machine learning community has been challenged to build an ML model and predict the sales of each product from each outlet. The participants also need to use the model to analyse the properties of the product in the stores and find ways to increase sales.
Item_ID: Item Identification Number
Item_W: Item Weight
Item_Type: Item
Item_MRP: MRP of the Product
Outlet_ID: Outlet ID
Outlet_Year: Outlet Establishment year
Outlet_Size: Size of the outlet
Outlet_Type: Type of the outlet
Sales: Total sales from the outlet
CREATE TABLE submission (
"sale" DOUBLE,
"unnamed_1" VARCHAR -- Unnamed: 1
);CREATE TABLE test (
"item_id" VARCHAR,
"item_w" DOUBLE,
"item_type" VARCHAR,
"item_mrp" DOUBLE,
"outlet_id" VARCHAR,
"outlet_year" BIGINT,
"outlet_size" VARCHAR,
"outlet_location_type" VARCHAR
);CREATE TABLE train (
"item_id" VARCHAR,
"item_w" DOUBLE,
"item_type" VARCHAR,
"item_mrp" DOUBLE,
"outlet_id" VARCHAR,
"outlet_year" BIGINT,
"outlet_size" VARCHAR,
"outlet_location_type" VARCHAR,
"sales" DOUBLE
);Anyone who has the link will be able to view this.