Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Fit a tree model of answered using all the available predictors. This is the model from the previous project; you are welcome to cut and

Fit a tree model of answered using all the available predictors. This is the model from the previous project; you are welcome to cut and paste your code.

a confusion matrix for this model, using the predict() function with the type = "class" argument. (The default probability threshold used by the function is .5.)

1. What is the number of true positives (TP) ? 2. What is the number of false positives (FP) ? 3. What is the number of true negatives (TN) ? 4. What is the number of false negatives (FN) ?

Note that due to mismatched factor levels the location of the cells in the confusion matrix may have gotten switched around. The numbers are accurate, but you must take care to identify which cells contain TP, FP, TN and FN.

Using the confusion matrix in the previous question how much profit (revenue - costs) could be expected with these costs-benefits?

Cost-Benefit Matrix:

observed yes observed no
predicted yes $75 -$25
predicted no

Hint: multiply the counts in the confusion matrix cells by the the cost-benefit matrix cells. Note: profit should not be negative! Make sure that you have correctly identified the true positives and the false positives in your confusion matrix.

The second data set for this assignment, adviseinvest_customer_data.csv, contains information on prospective customers. There is no target variable in this dataset because these customers have not yet been called.

Steps:

  1. Use the supervised model you created for the first question to predict a probability of answering for each prospective customer.
  2. Assign a predicted class label of "yes" to every customer whose model-estimated probability of answering that is .3 or greater. (This is the optimal class decision threshold.).
  3. Filter the dataset to contain only prospective customers with a predicted class label of "yes" (those whose predicted probability of answering is greater than .3). This is your contact list.

How many customers are on the contact list?

it is not strictly necessary to assign the class label. You could just filter the dataset to include only customers whose predicted probability of answering is .3 or greater.

Develop recommendations for the client, the Director of Sales at AdviseInvest. recommendations on AdviseInvest do? How should analytical results be operationalized?

In paragraph or two in which you clearly describe and argue for your recommendations.

  • Describe the business problem and persuasively present your results as a solution, discussing the details of how your predictive modeling results would be used/implemented by the Director of Sales to improve operations.
  • explain clearly and compellingly without mistakes (such as spelling errors) and without relying on jargon. The Director of Sales is knowledgeable about analytics but is not an expert statistician. You should therefore clearly explain terms any technical terms you choose to use (if any).

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Mathematical Applications for the Management Life and Social Sciences

Authors: Ronald J. Harshbarger, James J. Reynolds

11th edition

9781337032247, 9781305465183, 1305108043, 1337032247, 1305465180, 978-1305108042

More Books

Students also viewed these Mathematics questions

Question

Be so strong that nothing can disturb your peace of mind.

Answered: 1 week ago