问题| Matplotlib 绘图关于字符的问题:missing from current font @Python

字符问题之中文乱码问题

背景:

  • 在 windows 系统的 jupyter notebook 中,使用 Matplotlib 绘图过程中涉及了中文字符,出现警告:

D:\AllApp\Miniconda3\lib\site-packages\IPython\core\pylabtools.py:151: 
UserWarning: Glyph 25968 (\N{CJK UNIFIED IDEOGRAPH-6570}) missing from current font.
  fig.canvas.print_figure(bytes_io, **kw)

示例:使用 matplotlib 绘制折线图并设置样式

import matplotlib.pyplot as plt
x=[1,2,3,4,5]
squares=[1,4,9,16,25]
plt.plot(x,squares,linewidth=4) #设置线条宽度
#设置图标标题,并在坐标轴上添加标签
plt.title("数字",fontsize=18)
plt.xlabel('datas',fontsize=14)
plt.ylabel('squares',fontsize=14)
plt.show() # 展示图形
问题| Matplotlib 绘图关于字符的问题:missing from current font @Python_第1张图片
  • 由上方结果可知,Matplotlib 默认情况不支持中文,简单的解决方法:

# 在代码中添加如下语句 —— 设置字体为:SimHei(黑体)
plt.rcParams['font.sans-serif']=['SimHei']# 用来正常显示中文标签(中文乱码问题)
问题| Matplotlib 绘图关于字符的问题:missing from current font @Python_第2张图片

字符问题之坐标轴负号显示问题

背景:

设置完中文字符后,坐标轴部分字符可能会无法显示。如:若坐标轴存在负数,则可能存在负号显示问题:

D:\AllApp\Miniconda3\lib\site-packages\IPython\core\pylabtools.py:151:
 UserWarning: Glyph 8722 (\N{MINUS SIGN}) missing from current font.
  fig.canvas.print_figure(bytes_io, **kw)

具体:

  • 示例:使用 matplotlib 绘制一元二次方程曲线

import matplotlib.pyplot as plt
import numpy as np
x = np.arange(-100,100) # 200 个点的 x 坐标
y=[i*i for i in x]  # 生成 y 点的坐标:遍历x,把里面的每个元素进行平方
plt.plot(x,y)  #绘制一元二次曲线
plt.show()
问题| Matplotlib 绘图关于字符的问题:missing from current font @Python_第3张图片

解决:

设置完中文字符后,若坐标轴存在负数,则可能存在负号显示问题。解决方法:

# 在代码中添加如下语句 —— 设置正常显示符号
plt.rcParams['axes.unicode_minus'] = False
问题| Matplotlib 绘图关于字符的问题:missing from current font @Python_第4张图片

参考:https://blog.csdn.net/weixin_46474921/article/details/123783987

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