Question 12
A bank wants to predict whether a customer will default on a loan using a classification model. The bank collects data from past customers, which includes the following features:
- : Credit score (scaled between 0 and 1)
- : Monthly income (in $1000s)
- : Number of late payments in the past year
The target variable represents whether the customer defaulted (1 for default, 0 for no default). The data is provided in the table below:
| x | y |
|---|---|
| 0 | |
| 1 | |
| 0 | |
| 1 | |
| 0 |
The bank uses the following linear combination to compute :
The step function is used to classify the outcome:
Based on the above data, answer the given subquestions.
If the threshold in the step function is changed to z ≥ 1.0, what will happen to the misclassification rate?
Increase
Decrease
Remain same
Cannot be determined