Churn For Bank Customers
Predict customer churn in a bank
@kaggle.mathchi_churn_for_bank_customers
Predict customer churn in a bank
@kaggle.mathchi_churn_for_bank_customers
As we know, it is much more expensive to sign in a new client than keeping an existing one.
It is advantageous for banks to know what leads a client towards the decision to leave the company.
Churn prevention allows companies to develop loyalty programs and retention campaigns to keep as many customers as possible.
CREATE TABLE churn (
"rownumber" BIGINT,
"customerid" BIGINT,
"surname" VARCHAR,
"creditscore" BIGINT,
"geography" VARCHAR,
"gender" VARCHAR,
"age" BIGINT,
"tenure" BIGINT,
"balance" DOUBLE,
"numofproducts" BIGINT,
"hascrcard" BIGINT,
"isactivemember" BIGINT,
"estimatedsalary" DOUBLE,
"exited" BIGINT
);Anyone who has the link will be able to view this.