当我在 Python 3 中绘制带有汉字标签的图形时,它无法正常工作:
]
我的代码:
fig = pd.DataFrame({
'债券收益率':bond,
'债券型基金收益率':bondFunds,
'被动指数型基金收益率':indexFunds,
'总收益率':ret})
fig.plot()
plt.legend(loc=0)
plt.title('债券收益率',
fontproperties='SimHei',
fontsize='xx-large')
plt.grid(True)
plt.axis('tight')
原文由 DachuanZhao 发布,翻译遵循 CC BY-SA 4.0 许可协议
您需要使用
prop
kwag 将字体属性显式传递给legend
函数:资源