Pycharm画图中文显示报错:UserWarning: Glyph 20013 (\N{CJK UNIFIED IDEOGRAPH-4E2D}) missing from current font.
·
目录
中文字体显示问题
Pycharm在使用matplotlib画图时,如果在title,xlabel,ylabel中出现了中文,则会出现字体警告,中文字符显示为方框,具体如下例:
from sklearn import datasets
import matplotlib.pyplot as plt
# 图像数据集
china = datasets.load_sample_image('china.jpg')
plt.axis('off')
plt.title("中国颐和园图像")
plt.imshow(china)
plt.show()
运行代码,中文方框报错:
D:\Program Files\JetBrains\PyCharm 2022.1.3\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:68: UserWarning: Glyph 20013 (\N{CJK UNIFIED IDEOGRAPH-4E2D}) missing from current font.
FigureCanvasAgg.draw(self)
可以看到报错中“missing from current font” ,即默认的字体中不包含中文字符
解决方法
在画图代码中设置字体
from pylab import mpl
# 设置中文显示字体
mpl.rcParams["font.sans-serif"] = ["SimHei"]
有时字体更改后,会导致坐标轴中部分字符无法正常显示,此时需要设置axes.unicode_minus参数
# 设置正常显示符号
mpl.rcParams["axes.unicode_minus"] = False
更多推荐
已为社区贡献1条内容
所有评论(0)