欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Mac下使用matplotlib绘制图中文乱码问题解决

程序员文章站 2022-03-01 21:39:27
...

查看Mac支持的中文字体

from matplotlib.font_manager import FontManager
fm = FontManager()
mat_fonts = set(f.name for f in fm.ttflist)
print mat_fonts

运行如下代码,发现运行正常,无乱码现象

import  matplotlib.pyplot as plt

# 中文乱码的处理
plt.rcParams['font.sans-serif'] = ['Arial Unicode MS']

# 绘图
plt.bar(range(4), GDP, align = 'center',color='steelblue', alpha = 0.8)
# 添加轴标签
plt.ylabel('GDP')
# 添加标题
plt.title(u'四个直辖市GDP大比拼')
# 添加刻度标签
plt.xticks(range(4),[u'北京市','上海市','天津市','重庆市'])
# 设置Y轴的刻度范围
plt.ylim([5000,15000])

# 为每个条形图添加数值标签
for x, y in enumerate(GDP):
    plt.text(x,y+100,'%s' %round(y,1),ha='center')

# 显示图形
plt.show()