今天我试图从我的分类模型中绘制混淆矩阵。
在某些网页上搜索后,我发现来自matshow
的{{1}}可以帮助我。
pyplot
如果我的标签很少,它的效果很好
import matplotlib.pyplot as plt
from sklearn.metrics import confusion_matrix
def plot_confusion_matrix(cm, title='Confusion matrix', cmap=plt.cm.Blues, labels=None):
fig = plt.figure()
ax = fig.add_subplot(111)
cax = ax.matshow(cm)
plt.title(title)
fig.colorbar(cax)
if labels:
ax.set_xticklabels([''] + labels)
ax.set_yticklabels([''] + labels)
plt.xlabel('Predicted')
plt.ylabel('True')
plt.show()
但如果我有很多标签,有些标签不能正确显示
y_true = ['a', 'b', 'c', 'd', 'a', 'b', 'c', 'a', 'c', 'd', 'b', 'a', 'b', 'a']
y_pred = ['a', 'b', 'c', 'd', 'a', 'b', 'b', 'a', 'c', 'a', 'a', 'a', 'a', 'a']
labels = list(set(y_true))
cm = confusion_matrix(y_true, y_pred)
plot_confusion_matrix(cm, labels=labels)
我的问题是如何在matshow情节中显示所有标签?我试过像y_true = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']
y_pred = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n']
labels = list(set(y_true))
cm = confusion_matrix(y_true, y_pred)
plot_confusion_matrix(cm, labels=labels)
这样的东西,但它仍然无效
答案 0 :(得分:4)
您可以使用matplotlib.ticker
模块控制刻度的频率。
在这种情况下,您希望每隔1
设置一个勾号,这样我们就可以使用MultipleLocator
在致电plt.show()
之前添加这两行:
ax.xaxis.set_major_locator(ticker.MultipleLocator(1))
ax.yaxis.set_major_locator(ticker.MultipleLocator(1))
它会为y_true
和y_pred
中的每个字母生成一个勾号和标签。
我还更改了您的matshow
调用,以使用您在函数调用中指定的色彩映射:
cax = ax.matshow(cm,cmap=cmap)
为了完整起见,您的整个功能将如下所示:
import matplotlib.pyplot as plt
from sklearn.metrics import confusion_matrix
import matplotlib.ticker as ticker
def plot_confusion_matrix(cm, title='Confusion matrix', cmap=plt.cm.Blues, labels=None):
fig = plt.figure()
ax = fig.add_subplot(111)
# I also added cmap=cmap here, to make use of the
# colormap you specify in the function call
cax = ax.matshow(cm,cmap=cmap)
plt.title(title)
fig.colorbar(cax)
if labels:
ax.set_xticklabels([''] + labels)
ax.set_yticklabels([''] + labels)
ax.xaxis.set_major_locator(ticker.MultipleLocator(1))
ax.yaxis.set_major_locator(ticker.MultipleLocator(1))
plt.xlabel('Predicted')
plt.ylabel('True')
plt.savefig('confusionmatrix.png')
答案 1 :(得分:4)
您可以使用xticks
方法指定标签。您的函数将如下所示(从上面的答案中修改函数):
import matplotlib.pyplot as plt
from sklearn.metrics import confusion_matrix
def plot_confusion_matrix(cm, title='Confusion matrix', cmap=plt.cm.Blues, labels=None):
fig = plt.figure()
ax = fig.add_subplot(111)
# I also added cmap=cmap here, to make use of the
# colormap you specify in the function call
cax = ax.matshow(cm,cmap=cmap)
plt.title(title)
fig.colorbar(cax)
if labels:
plt.xticks(range(len(labels)), labels)
plt.yticks(range(len(labels)), labels)
plt.xlabel('Predicted')
plt.ylabel('True')
plt.savefig('confusionmatrix.png')