Assume that I have a dataframe as follows :
a b Class
0 1 2 yes
1 4 5 yes
2 7 8 No
3 10 5 No
4 4 5 No
5 1 2 No
6 8 1 yes
7 4 5 yes
8 7 8 No
and that I would like to predict the class of the following test_sample :
a b Class
0 5 3 ?
So, I train my KNN model like :
from sklearn.neighbors import KNeighborsClassifier
k = 3
knn = KNeighborsClassifier(n_neighbors = k)
knn = knn.fit(Dataset.drop("Class", axis=1), Dataset["Class"])
knn.predict(test_sample)
My aim is how can I measure the MSE error and how can I compute the confusion matrix ?
Let's take an example: