Horje
sklearn plot confusion matrix Code Example
sklearn plot confusion matrix
import matplotlib.pyplot as plt
from sklearn.metrics import confusion_matrix, plot_confusion_matrix

clf = # define your classifier (Decision Tree, Random Forest etc.)
clf.fit(X, y) # fit your classifier

# make predictions with your classifier
y_pred = clf.predict(X)         
# optional: get true negative (tn), false positive (fp)
# false negative (fn) and true positive (tp) from confusion matrix
M = confusion_matrix(y, y_pred)
tn, fp, fn, tp = M.ravel() 
# plotting the confusion matrix
plot_confusion_matrix(clf, X, y)
plt.show()
import sklearn.metrics from plot_confusion_matrix
from sklearn.metrics import plot_confusion_matrix
plotting confusion matrix
from sklearn.metrics import confusion_matrix
matrix_confusion = confusion_matrix(y_test, y_pred)
sns.heatmap(matrix_confusion, square=True, annot=True, cmap='Blues', fmt='d', cbar=False
confusion matrix with labels sklearn
import pandas as pd
y_true = pd.Series([2, 0, 2, 2, 0, 1, 1, 2, 2, 0, 1, 2])
y_pred = pd.Series([0, 0, 2, 1, 0, 2, 1, 0, 2, 0, 2, 2])

pd.crosstab(y_true, y_pred, rownames=['True'], colnames=['Predicted'], margins=True)




Python

Related
drop rows that contain null values in a pandas dataframe Code Example drop rows that contain null values in a pandas dataframe Code Example
discord py bot status Code Example discord py bot status Code Example
prettytable python Code Example prettytable python Code Example
input spaces seperated integers in python Code Example input spaces seperated integers in python Code Example
array of 1 to 100 python Code Example array of 1 to 100 python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7