Customer Segmentation
AV - Janatahack : Customer Segmentation
@kaggle.vetrirah_customer
AV - Janatahack : Customer Segmentation
@kaggle.vetrirah_customer
An automobile company has plans to enter new markets with their existing products (P1, P2, P3, P4 and P5). After intensive market research, they’ve deduced that the behavior of new market is similar to their existing market.
In their existing market, the sales team has classified all customers into 4 segments (A, B, C, D ). Then, they performed segmented outreach and communication for different segment of customers. This strategy has work exceptionally well for them. They plan to use the same strategy on new markets and have identified 2627 new potential customers.
You are required to help the manager to predict the right group of the new customers.
https://datahack.analyticsvidhya.com/contest/janatahack-customer-segmentation/#ProblemStatement
https://datahack.analyticsvidhya.com/contest/janatahack-customer-segmentation/#ProblemStatement
CREATE TABLE sample_submission (
"id" BIGINT,
"segmentation" VARCHAR
);CREATE TABLE test (
"id" BIGINT,
"gender" VARCHAR,
"ever_married" VARCHAR,
"age" BIGINT,
"graduated" VARCHAR,
"profession" VARCHAR,
"work_experience" DOUBLE,
"spending_score" VARCHAR,
"family_size" DOUBLE,
"var_1" VARCHAR
);CREATE TABLE train (
"id" BIGINT,
"gender" VARCHAR,
"ever_married" VARCHAR,
"age" BIGINT,
"graduated" VARCHAR,
"profession" VARCHAR,
"work_experience" DOUBLE,
"spending_score" VARCHAR,
"family_size" DOUBLE,
"var_1" VARCHAR,
"segmentation" VARCHAR
);Anyone who has the link will be able to view this.