python|Python | matplotlib 参数设置(解决中文、负号显示问题)

python|Python | matplotlib 参数设置(解决中文、负号显示问题)
文章图片

Python | matplotlib 参数设置(解决中文、负号显示问题)

  • 一、获取中文字体
    • 1.1 下载字体:
      • SimHei.ttf
      • SimSun.ttf
    • 1.2 获取 matplotlib 安装路径
    • 1.3 为 matplotlib 新增字体
    • 1.4 删除 matplotlib 缓存
  • 二、方法一:修改代码
    • 2.1 修改 rcParams 属性
    • 2.2 通过 rc() 方法修改
  • 三、方法二:修改配置文件
    • 3.1 找到默认配置文件的位置
    • 3.2 修改默认配置文件

一、获取中文字体 1.1 下载字体: SimHei.ttf
\qquad 云盘链接:https://pan.baidu.com/s/1VFEnQ1vtaThgtgUjNyq81A
\qquad 提取码:vzbs
SimSun.ttf
\qquad 云盘链接: https://pan.baidu.com/s/1l-RfnBRvbLBvHyHMri250A
\qquad 提取码:kc20
1.2 获取 matplotlib 安装路径
import matplotlib print(matplotlib.__file__)

python|Python | matplotlib 参数设置(解决中文、负号显示问题)
文章图片

1.3 为 matplotlib 新增字体 \qquad 在SimHei.ttf存储的路径下,将SimHei.ttf移动到matplotlib/mpl-data/fonts/ttf/目录下:
mv SimHei.ttf /home/dong/anaconda3/lib/python3.8/site-packages/matplotlib/mpl-data/fonts/ttf/

python|Python | matplotlib 参数设置(解决中文、负号显示问题)
文章图片

1.4 删除 matplotlib 缓存
cd ~/.cache/matplotlib rm -rf *.*

python|Python | matplotlib 参数设置(解决中文、负号显示问题)
文章图片

二、方法一:修改代码 2.1 修改 rcParams 属性
plt.rcParams['font.family'] =['SimHei'] # 解决中文显示异常的问题 plt.rcParams['axes.unicode_minus'] = False # 解决负号显示异常的问题

python|Python | matplotlib 参数设置(解决中文、负号显示问题)
文章图片

2.2 通过 rc() 方法修改
plt.rc('font',family='SimHei',size='15') plt.rc('axes',unicode_minus='False')

python|Python | matplotlib 参数设置(解决中文、负号显示问题)
文章图片

三、方法二:修改配置文件 3.1 找到默认配置文件的位置
import matplotlib matplotlib.matplotlib_fname()

【python|Python | matplotlib 参数设置(解决中文、负号显示问题)】python|Python | matplotlib 参数设置(解决中文、负号显示问题)
文章图片

3.2 修改默认配置文件
  • 找到font.family:,去除注释#
    python|Python | matplotlib 参数设置(解决中文、负号显示问题)
    文章图片
  • 找到font.sans-serif,添加SimHei,去除注释#
    python|Python | matplotlib 参数设置(解决中文、负号显示问题)
    文章图片
  • 找到axes.unicode_minus,将True改为False,去除注释#
    python|Python | matplotlib 参数设置(解决中文、负号显示问题)
    文章图片

    推荐阅读