Super Market Sales
Unveiling Consumer Behavior and Retail Trends through Supermarket Sales Data
@kaggle.arunjangir245_super_market_sales
Unveiling Consumer Behavior and Retail Trends through Supermarket Sales Data
@kaggle.arunjangir245_super_market_sales
Here's a brief description of each of the attributes or labels in the dataset:
For instance, if you were interested in predicting customer satisfaction, Rating might be a suitable label. If you were trying to predict sales or revenue, Total or Gross Income could be a potential label.
CREATE TABLE supermarket_sales (
"invoice_id" VARCHAR,
"branch" VARCHAR,
"city" VARCHAR,
"customer_type" VARCHAR,
"gender" VARCHAR,
"product_line" VARCHAR,
"unit_price" DOUBLE,
"quantity" BIGINT,
"tax_5" DOUBLE -- Tax 5%,
"total" DOUBLE,
"date" TIMESTAMP,
"time" VARCHAR,
"payment" VARCHAR,
"cogs" DOUBLE,
"gross_margin_percentage" DOUBLE,
"gross_income" DOUBLE,
"rating" DOUBLE
);Anyone who has the link will be able to view this.