Baselight

Customer Shopping (Latest Trends) Dataset

"Consumer Shopping Trends: Insights into Purchase Behavior and Patterns"

@kaggle.bhadramohit_customer_shopping_latest_trends_dataset

  • 63.94 KB
  • 3900 rows
  • 19 columns
customer_id

Customer ID

age

Age

gender

Gender

item_purchased

Item Purchased

category

Category

purchase_amount_usd

Purchase Amount (USD)

location

Location

size

Size

color

Color

season

Season

review_rating

Review Rating

subscription_status

Subscription Status

payment_method

Payment Method

shipping_type

Shipping Type

discount_applied

Discount Applied

promo_code_used

Promo Code Used

previous_purchases

Previous Purchases

preferred_payment_method

Preferred Payment Method

frequency_of_purchases

Frequency Of Purchases

155MaleBlouseClothing53KentuckyLGrayWinter3.1YesCredit CardExpressYesYes14VenmoFortnightly
219MaleSweaterClothing64MaineLMaroonWinter3.1YesBank TransferExpressYesYes2CashFortnightly
350MaleJeansClothing73MassachusettsSMaroonSpring3.1YesCashFree ShippingYesYes23Credit CardWeekly
421MaleSandalsFootwear90Rhode IslandMMaroonSpring3.5YesPayPalNext Day AirYesYes49PayPalWeekly
545MaleBlouseClothing49OregonMTurquoiseSpring2.7YesCashFree ShippingYesYes31PayPalAnnually
646MaleSneakersFootwear20WyomingMWhiteSummer2.9YesVenmoStandardYesYes14VenmoWeekly
763MaleShirtClothing85MontanaMGrayFall3.2YesDebit CardFree ShippingYesYes49CashQuarterly
827MaleShortsClothing34LouisianaLCharcoalWinter3.2YesDebit CardFree ShippingYesYes19Credit CardWeekly
926MaleCoatOuterwear97West VirginiaLSilverSummer2.6YesVenmoExpressYesYes8VenmoAnnually
1057MaleHandbagAccessories31MissouriMPinkSpring4.8YesPayPal2-Day ShippingYesYes4CashQuarterly

CREATE TABLE shopping_trends (
  "customer_id" BIGINT,
  "age" BIGINT,
  "gender" VARCHAR,
  "item_purchased" VARCHAR,
  "category" VARCHAR,
  "purchase_amount_usd" BIGINT,
  "location" VARCHAR,
  "size" VARCHAR,
  "color" VARCHAR,
  "season" VARCHAR,
  "review_rating" DOUBLE,
  "subscription_status" VARCHAR,
  "payment_method" VARCHAR,
  "shipping_type" VARCHAR,
  "discount_applied" VARCHAR,
  "promo_code_used" VARCHAR,
  "previous_purchases" BIGINT,
  "preferred_payment_method" VARCHAR,
  "frequency_of_purchases" VARCHAR
);

Share link

Anyone who has the link will be able to view this.