Bank Churn Dataset
Deciphering Customer Loyalty: Analyzing Bank Churn through Binary Classification
@kaggle.harshitstark_dataset
Deciphering Customer Loyalty: Analyzing Bank Churn through Binary Classification
@kaggle.harshitstark_dataset
Unravel the dynamics of customer retention in the financial landscape with this comprehensive "Bank Churn Dataset." Engage in insightful binary classification analysis to predict customer churn, offering a valuable resource for understanding and addressing challenges related to customer loyalty in the banking sector. Explore the intricacies of this dataset to enhance your predictive modeling skills and contribute to the advancements in customer relationship management.
CREATE TABLE bank_churn_output_submission (
"id" BIGINT,
"exited" DOUBLE
);CREATE TABLE sample_submission (
"id" BIGINT,
"exited" DOUBLE
);CREATE TABLE test (
"id" BIGINT,
"customerid" BIGINT,
"surname" VARCHAR,
"creditscore" BIGINT,
"geography" VARCHAR,
"gender" VARCHAR,
"age" DOUBLE,
"tenure" BIGINT,
"balance" DOUBLE,
"numofproducts" BIGINT,
"hascrcard" DOUBLE,
"isactivemember" DOUBLE,
"estimatedsalary" DOUBLE
);CREATE TABLE train (
"id" BIGINT,
"customerid" BIGINT,
"surname" VARCHAR,
"creditscore" BIGINT,
"geography" VARCHAR,
"gender" VARCHAR,
"age" DOUBLE,
"tenure" BIGINT,
"balance" DOUBLE,
"numofproducts" BIGINT,
"hascrcard" DOUBLE,
"isactivemember" DOUBLE,
"estimatedsalary" DOUBLE,
"exited" BIGINT
);Anyone who has the link will be able to view this.