Baselight

E-commerce Sales Prediction Dataset

Synthetic E-commerce Dataset for Sales Forecasting and Trend Analysis

@kaggle.nevildhinoja_e_commerce_sales_prediction_dataset

Ecommerce Sales Prediction Dataset
@kaggle.nevildhinoja_e_commerce_sales_prediction_dataset.ecommerce_sales_prediction_dataset

  • 30.45 KB
  • 1000 rows
  • 7 columns
date

Date

product_category

Product Category

price

Price

discount

Discount

customer_segment

Customer Segment

marketing_spend

Marketing Spend

units_sold

Units Sold

01-01-2023Sports932.835.82Occasional6780.3832
02-01-2023Toys569.483.6Premium6807.5616
03-01-2023Home Decor699.683.56Premium3793.9127
04-01-2023Toys923.270.61Premium9422.7529
05-01-2023Toys710.1747.83Premium1756.8317
06-01-2023Fashion161.0136.88Premium5053.5627
07-01-2023Home Decor580.5317.66Occasional6939.7530
08-01-2023Home Decor610.6514.83Regular7001.6427
09-01-2023Home Decor429.8917.49Occasional6521.5332
10-01-2023Toys739.0838.73Regular2825.3528

CREATE TABLE ecommerce_sales_prediction_dataset (
  "date" VARCHAR,
  "product_category" VARCHAR,
  "price" DOUBLE,
  "discount" DOUBLE,
  "customer_segment" VARCHAR,
  "marketing_spend" DOUBLE,
  "units_sold" BIGINT
);

Share link

Anyone who has the link will be able to view this.