Customer Churn Dataset
Predict Customer's Retention
@kaggle.muhammadshahidazeem_customer_churn_dataset
Predict Customer's Retention
@kaggle.muhammadshahidazeem_customer_churn_dataset
CREATE TABLE customer_churn_dataset_testing_master (
"customerid" BIGINT,
"age" BIGINT,
"gender" VARCHAR,
"tenure" BIGINT,
"usage_frequency" BIGINT,
"support_calls" BIGINT,
"payment_delay" BIGINT,
"subscription_type" VARCHAR,
"contract_length" VARCHAR,
"total_spend" BIGINT,
"last_interaction" BIGINT,
"churn" BIGINT
);
CREATE TABLE customer_churn_dataset_training_master (
"customerid" DOUBLE,
"age" DOUBLE,
"gender" VARCHAR,
"tenure" DOUBLE,
"usage_frequency" DOUBLE,
"support_calls" DOUBLE,
"payment_delay" DOUBLE,
"subscription_type" VARCHAR,
"contract_length" VARCHAR,
"total_spend" DOUBLE,
"last_interaction" DOUBLE,
"churn" DOUBLE
);
Anyone who has the link will be able to view this.