使用seaborn heatmap时,有没有一种方法可以自动调整字体大小以使其完全适合正方形内部?
例如在:
sns.heatmap(corrmat, vmin=corrmat.values.min(), vmax=1, square=True, cmap="YlGnBu",
linewidths=0.1, annot=True, annot_kws={"size":8})
此处的大小在“annot_kws”中设置。
最佳答案
您也可以这样做:
sns.heatmap(corrmat, vmin=corrmat.values.min(), vmax=1, square=True, cmap="YlGnBu", linewidths=0.1, annot=True, annot_kws={"fontsize":8})