Superstore Marketing Campaign Dataset
Sample customer data for analysis of a targeted Membership Offer
@kaggle.ahsan81_superstore_marketing_campaign_dataset
Sample customer data for analysis of a targeted Membership Offer
@kaggle.ahsan81_superstore_marketing_campaign_dataset
Context- A superstore is planning for the year-end sale. They want to launch a new offer - gold membership, that gives a 20% discount on all purchases, for only $499 which is $999 on other days. It will be valid only for existing customers and the campaign through phone calls is currently being planned for them. The management feels that the best way to reduce the cost of the campaign is to make a predictive model which will classify customers who might purchase the offer.
Objective - The superstore wants to predict the likelihood of the customer giving a positive response and wants to identify the different factors which affect the customer's response. You need to analyze the data provided to identify these factors and then build a prediction model to predict the probability of a customer will give a positive response.
CREATE TABLE superstore_data (
"id" BIGINT,
"year_birth" BIGINT,
"education" VARCHAR,
"marital_status" VARCHAR,
"income" DOUBLE,
"kidhome" BIGINT,
"teenhome" BIGINT,
"dt_customer" TIMESTAMP,
"recency" BIGINT,
"mntwines" BIGINT,
"mntfruits" BIGINT,
"mntmeatproducts" BIGINT,
"mntfishproducts" BIGINT,
"mntsweetproducts" BIGINT,
"mntgoldprods" BIGINT,
"numdealspurchases" BIGINT,
"numwebpurchases" BIGINT,
"numcatalogpurchases" BIGINT,
"numstorepurchases" BIGINT,
"numwebvisitsmonth" BIGINT,
"response" BIGINT,
"complain" BIGINT
);Anyone who has the link will be able to view this.