Data Telco Customer Churn
How is it possible for the predictions made to look at customer usage patterns?
@kaggle.reyhanarighy_data_telco_customer_churn
How is it possible for the predictions made to look at customer usage patterns?
@kaggle.reyhanarighy_data_telco_customer_churn
Overview
This dataset provides information about customers of a telecommunications company and whether they churned (i.e., discontinued their services) or not. Churn is a critical business metric for telecom companies, as retaining customers is generally more cost-effective than acquiring new ones. This dataset can be used to analyze factors that contribute to customer churn and to build predictive models for customer retention.
Dataset Description
Dependents: Does the customer have dependents or not.tenure: How long the customer has subscribed to the company's services.OnlineSecurity: Does the customer use the Online Security service or not.OnlineBackup: Does the customer use the Online Backup service or not.InternetService: Does the customer subscribe to Internet Service or not.DeviceProtection: Does the customer use the Device Protection service or not.TechSupport: Does the customer use Tech Support services or not.contracts: The duration of the contract used.PaperlessBilling: Is the bill sent on a paperless basis or not.MonthlyCharges: Number of bills charged each month.Churn: Has the customer unsubscribed or not.Potential Uses
CREATE TABLE data_telco_customer_churn (
  "dependents" VARCHAR,
  "tenure" BIGINT,
  "onlinesecurity" VARCHAR,
  "onlinebackup" VARCHAR,
  "internetservice" VARCHAR,
  "deviceprotection" VARCHAR,
  "techsupport" VARCHAR,
  "contract" VARCHAR,
  "paperlessbilling" VARCHAR,
  "monthlycharges" DOUBLE,
  "churn" VARCHAR
);Anyone who has the link will be able to view this.