Shopping Behavior Dataset
Analyze how age, gender, and income influence shopping habits and product choice
@kaggle.ahmadrazakashif_shopping_behavior_dataset
Analyze how age, gender, and income influence shopping habits and product choice
@kaggle.ahmadrazakashif_shopping_behavior_dataset
This dataset contains detailed information about customer demographics and shopping behavior. It includes attributes such as gender, age group, time period income, and spending score, providing insights into how consumer characteristics influence purchasing decisions. The data can be used for market sectionalization, consumer trend analysis, and retail strategy improvement
CREATE TABLE shopping_behavior_updated (
"customer_id" BIGINT,
"age" BIGINT,
"gender" VARCHAR,
"item_purchased" VARCHAR,
"category" VARCHAR,
"purchase_amount_usd" BIGINT -- Purchase Amount (USD),
"location" VARCHAR,
"size" VARCHAR,
"color" VARCHAR,
"season" VARCHAR,
"review_rating" DOUBLE,
"subscription_status" VARCHAR,
"shipping_type" VARCHAR,
"discount_applied" VARCHAR,
"promo_code_used" VARCHAR,
"previous_purchases" BIGINT,
"payment_method" VARCHAR,
"frequency_of_purchases" VARCHAR
);
Anyone who has the link will be able to view this.