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

python matplotlib 中文显示和参数设置

程序员文章站 2022-03-21 10:31:41
...

一劳永逸的方法:

import matplotlib
matplotlib.matplotlib_fname() #将会获得matplotlib包所在文件夹

找到 matplotlibrc配置文件,notepad打开重新编辑。

我成功的修改方式

中文显示:

font.sans-serif     : SimHei, DejaVu Sans, Bitstream Vera Sans, Computer Modern Sans Serif, 

这一行去#号,加SimHei 

“-1”显示:

axes.unicode_minus  : False

去#号,改False

笨方法:

#coding:utf-8
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签
plt.rcParams['axes.unicode_minus']=False #用来正常显示负号
#有中文出现的情况,需要u'内容'

 可能不适用所有人

具体可以参考文章:https://segmentfault.com/a/1190000005144275