Answer:
A: Convert the values in the approve column to numeric representations. That is "Yes" = 0 and "No" = 1
Step-by-step explanation:
Binary classification problems seeks to classify an object into one of two classes. Usually each class has a label like spam or not spam, churn or not churn. The task is usually to predict that a new case belongs to one of the two classes using machine learning algorithms.
Since the task is to classify "yes" or "no" these labels are assigned numeric values of 0 and 1.
Popular machine learning algorithms for binary classifications include:
Decision trees, Logistic regression, support vector machine, Naive Bayes and K-Nearest Neighbour.