Customer Purchase Behavior - Electronic Sales Data
Customer purchasing behavior and demographics in the electronics market.
@kaggle.cameronseamons_electronic_sales_sep2023_sep2024
Customer purchasing behavior and demographics in the electronics market.
@kaggle.cameronseamons_electronic_sales_sep2023_sep2024
Description:
This dataset contains sales transaction records for an electronics company over a one-year period, spanning from September 2023 to September 2024. It includes detailed information about customer demographics, product types, and purchase behaviors.
Key Features:
NOTE: The original generated data had exactly 50% counts for both gender and loyalty. I have adjusted this for a more realistic distribution. Additionally, I ensured that all customer information is consistent across all their orders.
Data Stats:
Total Rows: 20,000
Time Period: September 2023 to September 2024
Product Types: Includes various electronics such as Smartphones, Laptops, Tablets, and Smartwatches.
Disclaimer:
This dataset is generated. It does not represent real-world transactions or actual customer data.
All values, including customer IDs, ages, product types, and ratings, are fictitious and created for the purpose of analysis and modeling.
CREATE TABLE electronic_sales_sep2023_sep2024 (
"customer_id" BIGINT,
"age" BIGINT,
"gender" VARCHAR,
"loyalty_member" VARCHAR,
"product_type" VARCHAR,
"sku" VARCHAR,
"rating" BIGINT,
"order_status" VARCHAR,
"payment_method" VARCHAR,
"total_price" DOUBLE,
"unit_price" DOUBLE,
"quantity" BIGINT,
"purchase_date" TIMESTAMP,
"shipping_type" VARCHAR,
"add_ons_purchased" VARCHAR,
"add_on_total" DOUBLE
);Anyone who has the link will be able to view this.