When I draw a figure with Chinese Character label in Python 3, it doesn’t work correctly:
]
My code:
JavaScript
x
13
13
1
fig = pd.DataFrame({
2
'债券收益率':bond,
3
'债券型基金收益率':bondFunds,
4
'被动指数型基金收益率':indexFunds,
5
'总收益率':ret})
6
fig.plot()
7
plt.legend(loc=0)
8
plt.title('债券收益率',
9
fontproperties='SimHei',
10
fontsize='xx-large')
11
plt.grid(True)
12
plt.axis('tight')
13
Advertisement
Answer
You need to explicitly pass the font properties to legend
function using the prop
kwag:
JavaScript
1
20
20
1
from matplotlib import font_manager
2
3
fontP = font_manager.FontProperties()
4
fontP.set_family('SimHei')
5
fontP.set_size(14)
6
7
fig = pd.DataFrame({
8
'债券收益率':bond,
9
'债券型基金收益率':bondFunds,
10
'被动指数型基金收益率':indexFunds,
11
'总收益率':ret})
12
fig.plot()
13
14
# Note the next lines
15
plt.legend(loc=0, prop=fontP)
16
plt.title('债券收益率', fontproperties=fontP)
17
18
plt.grid(True)
19
plt.axis('tight')
20