matplotlib显示中文的方法
程序员文章站
2022-03-02 08:12:59
...
方法一:动态设置参数(推荐)
from matplotlib import pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei'] # 用来正常显示中文标签
plt.rcParams['axes.unicode_minus'] = False # 用来正常显示负号
# 更改了字体导致显示不出负号,因此将配署文件中axes.unicode minus : True修改为False。
方法二:设置字体
import matplotlib
font = {'family' : 'SimHei',
'weight': 'bold',
'size': 'larger'}
matplotlib.rc("font",**font)
# 以上代码等同于 matplotlib.rc("font",family='SimHei',weight="bold")
方法三:修改配置文件matplotlibrc
#font.family : sans-serif
#font.sans-serif : Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Anal, Helvetica, Avant Ga
方法四:使用字体管理器
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
# 指定系统字体
my_font = FontProperties(fname='C:/Windows/Fonts/SimHei.ttf', size=10)
plt.plot([10, 20], [20, 40])
plt.title('显示中文', fontproperties=my_font)
plt.show()
上一篇: 基于分治算法的快速排序
下一篇: 冒泡排序python实现