Question
The churn data set was developed to predict telecom customer churn based on information about their account. The data files state that the data are
- The "churn" data set was developed to predict telecom customer churn based on information about their account. The data files state that the data are "artificial based on claims similar to real world." The data consist of 19 predictors related to the customer account, such as the number of customer service calls, the area code, and the number of minutes. The outcome is whether the customer churned.
The data are contained in the C50 package and can be loaded using:
> library(C50)
> library(modeldata)
> data(mlc_churn)
> ## Two objects are loaded: churnTrain and churnTest
a)Explore the data by visualizing the relationship between the predictors and the outcome. Are there important features of the predictor data themselves, such as between-predictor correlations or degenerate distributions? Can functions of more than one predictor be used to model the data more effectively?
b)Fit some basic models to the training set and tune them via resampling. What criteria should be used to evaluate the effectiveness of the models?
c)Use lift charts to compare models. If you wanted to identify 80% of the churning customers, how many other customers would also be identified?
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started