Retail Dataset
Massive Dataset for Retail Store Analysis
@kaggle.matteo2002_retail_dataset
Massive Dataset for Retail Store Analysis
@kaggle.matteo2002_retail_dataset
Dataset Description
This dataset contains 436,689 records of commercial transactions from a retail store/marketplace, recorded between December 2014 and December 2015. Each row represents the purchase of a single product within a specific invoice.
Main Columns:
Potential Data Mining Applications:
General Characteristics:
CREATE TABLE customers (
"customerid" BIGINT,
"customer_type" VARCHAR
);CREATE TABLE invoice_items (
"invoiceid" BIGINT,
"product_id" BIGINT,
"quantity" BIGINT,
"price" DOUBLE,
"line_total" DOUBLE
);CREATE TABLE products (
"product_id" BIGINT,
"item" VARCHAR,
"category" VARCHAR,
"price" DOUBLE
);CREATE TABLE purchases (
"invoiceid" BIGINT,
"date" TIMESTAMP,
"customerid" BIGINT,
"product_id" BIGINT,
"quantity" BIGINT
);Anyone who has the link will be able to view this.