关于matplotlib画图中文不显示问题(plt.xlabel)

 

导入库函数
from matplotlib.font_manager import FontProperties
font_set = FontProperties(fname=r"c:\windows\fonts\simsun.ttc", size=15)
再为plt函数添加第二参数:
fontproperties=font_set

 然后修改代码如下(标红部分)

plt.xlabel('抽样次数',fontproperties=font_set)
plt.ylabel('点估计值',fontproperties=font_set)

 

你可能感兴趣的:(matplotlib,python,开发语言)