基于python的seaborn库画图时候添加标题,解决中文乱码,负号不显示问题

import seaborn as sns
import matplotlib.pyplot as plt
# 解决保存图像是负号'-'显示为方块的问题
plt.rcParams['axes.unicode_minus'] = False  
# 解决中文乱码
sns.set_style('whitegrid', {'font.sans-serif': ['simhei','FangSong']})
ax = sns.heatmap(data, vmin=-1, vmax=1, center=0, xticklabels=False,yticklabels=False, linewidths=0.7)
# 画标题
ax.set_title("我是标题")

上一篇:[osx] intellij-idea快捷键大全


下一篇:Python机器学习:PCA与梯度上升:007试手MNIST数据集