Exploring Coffee Sales With EDA & Visualization
Analyzing Coffee Shop Sales Trends and Customer Purchasing Behavior
@kaggle.wardabilal_exploring_coffee_sales_with_eda_and_visualization
Analyzing Coffee Shop Sales Trends and Customer Purchasing Behavior
@kaggle.wardabilal_exploring_coffee_sales_with_eda_and_visualization
This dataset contains 3,547 coffee shop sales record collected over different days and months. It includes details such as the type of coffee purchased, transaction amount, payment method, date, and time-related attributes (hour, weekday, and month). The data can be used for sales trend analysis, customer behavior observation and sales prediction.
CREATE TABLE coffe_sales (
"hour_of_day" BIGINT,
"cash_type" VARCHAR,
"money" DOUBLE,
"coffee_name" VARCHAR,
"time_of_day" VARCHAR,
"weekday" VARCHAR,
"month_name" VARCHAR,
"weekdaysort" BIGINT,
"monthsort" BIGINT,
"date" TIMESTAMP,
"time" VARCHAR
);
Anyone who has the link will be able to view this.