Binary classification task where the student must classify people into those that earn above £50k and those that earn below £50k
Classifier must be built using Scikit-learn, choice of classification method is up to the student. Seeing as labelled data is provided then any supervised method provided in Scikit-learn would make sense, for example perceptron or SVM.
A train and test set are provided. Features pertain to individuals life such as age, education, hours worked per week. The train set also provides labelled data for each person on whether they are >50k or
Sample Solution