我如何才能通过海洋热图添加边距?

时间:2019-07-08 14:34:50

标签: matplotlib seaborn heatmap python-3.7

第一行和最后一行的热图正方形被绘制一半。 用平移/缩放手动缩小后,就可以看到所有内容。

# Draw the heatmap with the mask and correct aspect ratio
ax = sns.heatmap(myDataframe, mask=myMask, cmap=cmap, vmax=1, vmin=-1, center=0,
        square=True, linewidths=0.5, annot=True, cbar_kws={"shrink": 0.5}, ax = ax)                                        

ax.margins(x = 0.1, y= 0.1)
ax.use_sticky_edges = False
ax.autoscale_view(scaley = False, scalex = False)


plt.show()

我想显示全部图。非常提示:-)。pls check last row of heatmap

0 个答案:

没有答案