Baselight

Walmart Dataset

Walmart Store Sales Prediction - Regression Problem

@kaggle.yasserh_walmart_dataset

Walmart
@kaggle.yasserh_walmart_dataset.walmart

  • 117.88 KB
  • 6435 rows
  • 8 columns
store

Store

date

Date

weekly_sales

Weekly Sales

holiday_flag

Holiday Flag

temperature

Temperature

fuel_price

Fuel Price

cpi

CPI

unemployment

Unemployment

105-02-20101643690.942.312.572211.09635828.106
112-02-20101641957.44138.512.548211.24216988.106
119-02-20101611968.1739.932.514211.28914298.106
126-02-20101409727.5946.632.561211.31964298.106
105-03-20101554806.6846.52.625211.35014298.106
112-03-20101439541.5957.792.667211.38064298.106
119-03-20101472515.7954.582.72211.2156358.106
126-03-20101404429.9251.452.732211.01804248.106
102-04-20101594968.2862.272.719210.82044997.808
109-04-20101545418.5365.862.77210.62285747.808

CREATE TABLE walmart (
  "store" BIGINT,
  "date" VARCHAR,
  "weekly_sales" DOUBLE,
  "holiday_flag" BIGINT,
  "temperature" DOUBLE,
  "fuel_price" DOUBLE,
  "cpi" DOUBLE,
  "unemployment" DOUBLE
);

Share link

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