matplotlib中的图像图数据和seaborn超出框架

时间:2019-11-23 07:37:12

标签: python dataframe matplotlib seaborn heatmap

混乱矩阵显示的数据不合帧。我尝试调整图的大小,以改变图的区域,但数据仍然超出框架。任何想法?预先感谢。

enter image description here

cm = confusion_matrix(decoded_y_test, predictions)
cm_df = pd.DataFrame(cm,
index = ['HIT','AVERAGE','FLOP'], 
columns = ['HIT','AVERAGE','FLOP'])

plt.figure(figsize=(5.5,4))
sns.heatmap(cm_df, annot=True)

1 个答案:

答案 0 :(得分:0)

这似乎与此matplotlib/seaborn: first and last row cut in half of heatmap plot

类似

您正在使用哪个版本的matplotlib?恢复到版本3.1.0似乎可以解决此问题。