为什么数据标签名称未显示在绘制的混淆矩阵的单元格中心?

时间:2019-08-22 14:48:02

标签: python matplotlib seaborn heatmap confusion-matrix

源代码:

将matplotlib.pyplot导入为情节

从sklearn.metrics导入confusion_matrix

将seaborn导入为sns

将熊猫作为pd导入

plot.style.use('ggplot')

cm = confusion_matrix(y_test,y_pred)

df_cm = pd.DataFrame(cm,索引=(0,1),列=(0,1))

plot.figure(figsize =(8,7))

sns.set(font_scale = 1.4)

sns.heatmap(df_cm,annot = True,fmt ='g')

enter image description here

从代码的执行中,我获得了显示在几乎不可见的单元格边缘上的数据的标签值。我正在使用jupyter笔记本。

0 个答案:

没有答案