0%

Python matplotlib.rcParams常用设置

matplotlib是Python的画图工具。

可以通过对 matplotlib.rcParams 字典做一些常用的设置,例如:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import matplotlib.pyplot as plt

# 中文支持,不会显示小方框
plt.rcParams['font.sans-serif'] = ['SimHei']

# 正常显示负号
plt.rcParams['axes.unicode_minus'] = False

# 设置线条宽度
plt.rcParams['lines.linewidth'] = 5

# 设置线条颜色
plt.rcParams['lines.color'] = 'red'

# 设置线条样式,样式的各类还有 `--`为虚线,`-.`为点虚线
plt.rcParams['lines.linestyle'] = '-' # 直线

其实在新的版本中,中文显示和负号显示已经默认显示正常了。