Baselight

Superstore Sales Dataset

Predict Sales using Time Series

@kaggle.rohitsahoo_sales_forecasting

Train
@kaggle.rohitsahoo_sales_forecasting.train

  • 385.84 KB
  • 9800 rows
  • 18 columns
row_id

Row ID

order_id

Order ID

order_date

Order Date

ship_date

Ship Date

ship_mode

Ship Mode

customer_id

Customer ID

customer_name

Customer Name

segment

Segment

country

Country

city

City

state

State

postal_code

Postal Code

region

Region

product_id

Product ID

category

Category

sub_category

Sub-Category

product_name

Product Name

sales

Sales

1CA-2017-152156Wed Nov 08 2017 00:00:00 GMT+0000 (Coordinated Universal Time)Sat Nov 11 2017 00:00:00 GMT+0000 (Coordinated Universal Time)Second ClassCG-12520Claire GuteConsumerUnited StatesHendersonKentucky42420SouthFUR-BO-10001798FurnitureBookcasesBush Somerset Collection Bookcase261.96
2CA-2017-152156Wed Nov 08 2017 00:00:00 GMT+0000 (Coordinated Universal Time)Sat Nov 11 2017 00:00:00 GMT+0000 (Coordinated Universal Time)Second ClassCG-12520Claire GuteConsumerUnited StatesHendersonKentucky42420SouthFUR-CH-10000454FurnitureChairsHon Deluxe Fabric Upholstered Stacking Chairs, Rounded Back731.94
3CA-2017-138688Mon Jun 12 2017 00:00:00 GMT+0000 (Coordinated Universal Time)Fri Jun 16 2017 00:00:00 GMT+0000 (Coordinated Universal Time)Second ClassDV-13045Darrin Van HuffCorporateUnited StatesLos AngelesCalifornia90036WestOFF-LA-10000240Office SuppliesLabelsSelf-Adhesive Address Labels for Typewriters by Universal14.62
4US-2016-108966Tue Oct 11 2016 00:00:00 GMT+0000 (Coordinated Universal Time)Tue Oct 18 2016 00:00:00 GMT+0000 (Coordinated Universal Time)Standard ClassSO-20335Sean O'DonnellConsumerUnited StatesFort LauderdaleFlorida33311SouthFUR-TA-10000577FurnitureTablesBretford CR4500 Series Slim Rectangular Table957.5775
5US-2016-108966Tue Oct 11 2016 00:00:00 GMT+0000 (Coordinated Universal Time)Tue Oct 18 2016 00:00:00 GMT+0000 (Coordinated Universal Time)Standard ClassSO-20335Sean O'DonnellConsumerUnited StatesFort LauderdaleFlorida33311SouthOFF-ST-10000760Office SuppliesStorageEldon Fold 'N Roll Cart System22.368
6CA-2015-115812Tue Jun 09 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Sun Jun 14 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Standard ClassBH-11710Brosina HoffmanConsumerUnited StatesLos AngelesCalifornia90032WestFUR-FU-10001487FurnitureFurnishingsEldon Expressions Wood and Plastic Desk Accessories, Cherry Wood48.86
7CA-2015-115812Tue Jun 09 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Sun Jun 14 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Standard ClassBH-11710Brosina HoffmanConsumerUnited StatesLos AngelesCalifornia90032WestOFF-AR-10002833Office SuppliesArtNewell 3227.28
8CA-2015-115812Tue Jun 09 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Sun Jun 14 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Standard ClassBH-11710Brosina HoffmanConsumerUnited StatesLos AngelesCalifornia90032WestTEC-PH-10002275TechnologyPhonesMitel 5320 IP Phone VoIP phone907.152
9CA-2015-115812Tue Jun 09 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Sun Jun 14 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Standard ClassBH-11710Brosina HoffmanConsumerUnited StatesLos AngelesCalifornia90032WestOFF-BI-10003910Office SuppliesBindersDXL Angle-View Binders with Locking Rings by Samsill18.504
10CA-2015-115812Tue Jun 09 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Sun Jun 14 2015 00:00:00 GMT+0000 (Coordinated Universal Time)Standard ClassBH-11710Brosina HoffmanConsumerUnited StatesLos AngelesCalifornia90032WestOFF-AP-10002892Office SuppliesAppliancesBelkin F5C206VTEL 6 Outlet Surge114.9

CREATE TABLE train (
  "row_id" BIGINT,
  "order_id" VARCHAR,
  "order_date" TIMESTAMP,
  "ship_date" TIMESTAMP,
  "ship_mode" VARCHAR,
  "customer_id" VARCHAR,
  "customer_name" VARCHAR,
  "segment" VARCHAR,
  "country" VARCHAR,
  "city" VARCHAR,
  "state" VARCHAR,
  "postal_code" DOUBLE,
  "region" VARCHAR,
  "product_id" VARCHAR,
  "category" VARCHAR,
  "sub_category" VARCHAR,
  "product_name" VARCHAR,
  "sales" DOUBLE
);

Share link

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