图例显示中文名字
import matplotlib
matplotlib.rc("font",family='FangSong')
添加图像标题、横纵坐标轴的标签
plt.title("title")
plt.xlabel("label")
plt.ylabel("label")
plt.legend(loc=‘best’)
图例显示中文名字
import matplotlib
matplotlib.rc("font",family='FangSong')
添加图像标题、横纵坐标轴的标签
plt.title("title")
plt.xlabel("label")
plt.ylabel("label")
plt.legend(loc=‘best’)