之前在網上搜,找不到好的保存方法,這裡介紹一下:
# seaborn中文亂碼解決方案
from matplotlib.font_manager import FontProperties
myfont=FontProperties(fname=r'C:\Windows\Fonts\simhei.ttf',size=20)
sns.set(font=myfont.get_name(), color_codes=True)
chazhi66_corr = chazhi66.corr(method="spearman")#計算相關性系數
plt.figure(figsize=(20,15))#figsize可以規定熱力圖大小
fig=sns.heatmap(chazhi66_corr,annot=True,fmt='.2g')#annot為熱力圖上顯示數據;fmt='.2g'為數據保留兩位有效數字
fig
fig.get_figure().savefig('chazhi66_corr.png')#保留圖片
保存圖片的核心話語:
fig.get_figure().savefig('chazhi66_corr.png')#保留圖片
生成的圖片: