Analyzing Customer Churn And Its Impact On Revenue
Exploring Patterns and Trends
@kaggle.thedevastator_analyzing_customer_churn_and_its_impact_on_reven
Exploring Patterns and Trends
@kaggle.thedevastator_analyzing_customer_churn_and_its_impact_on_reven
CREATE TABLE d (
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
CREATE TABLE data (
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
CREATE TABLE dataset1 (
"unnamed_0" BIGINT,
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
CREATE TABLE dataset2 (
"unnamed_0" BIGINT,
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
CREATE TABLE dataset3 (
"unnamed_0" BIGINT,
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
CREATE TABLE dataset4 (
"unnamed_0" BIGINT,
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
CREATE TABLE dataset5 (
"unnamed_0" BIGINT,
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
CREATE TABLE finalresult (
"unnamed_0_1" BIGINT,
"unnamed_0" BIGINT,
"totalcharges" DOUBLE,
"customerid" BIGINT,
"churn_prob" DOUBLE,
"customer_worth" DOUBLE
);
CREATE TABLE finalresult2 (
"customerid" BIGINT,
"churn_prob" DOUBLE,
"customer_worth" DOUBLE,
"email" VARCHAR
);
CREATE TABLE logit (
"unnamed_0" VARCHAR,
"n_0" DOUBLE,
"n_1" DOUBLE
);
CREATE TABLE maildataset (
"name" VARCHAR,
"email" VARCHAR,
"company" VARCHAR,
"promocode" VARCHAR
);
CREATE TABLE predictionresult (
"unnamed_0" BIGINT,
"pred_prob" DOUBLE,
"count" BIGINT,
"true_prob" DOUBLE
);
CREATE TABLE test_churn (
"unnamed_0" BIGINT,
"churn" VARCHAR,
"gender" VARCHAR,
"seniorcitizen" BIGINT,
"partner" VARCHAR,
"dependents" VARCHAR,
"tenure" BIGINT,
"phoneservice" VARCHAR,
"multiplelines" VARCHAR,
"internetservice" VARCHAR,
"onlinesecurity" VARCHAR,
"onlinebackup" VARCHAR,
"deviceprotection" VARCHAR,
"techsupport" VARCHAR,
"streamingtv" VARCHAR,
"streamingmovies" VARCHAR,
"contract" VARCHAR,
"paperlessbilling" VARCHAR,
"paymentmethod" VARCHAR,
"monthlycharges" DOUBLE,
"totalcharges" DOUBLE,
"customerid" BIGINT
);
Anyone who has the link will be able to view this.