Path: blob/master/lessons/lesson_10-sub-Jacob_Koehler/02-BankMarketing.ipynb
1904 views
Bank Marketing Lab
In this lab, our goal is to predict the purchase of a bank product marketed over the phone. This is represented in our y
column in the data. (Here is the data dictionary ) In examining this binary classification problem, we want to explore how different models perform, specifically in terms of:
Accuracy
Precision
Recall
Exploration
Are there other characteristics that need to be handled within the data? How can we encode something like the missing values that are labeled 'unknown'?
Model Building
Examine the results of three classification models including a LogisticRegression
, and a DummyClassifier
. Produce and interpret the classification report for each of these models. Which would you care about more in this scenario, a model that has higher precision or recall?