Matplotlib 中如何设置绘图背景颜色

Jinku Hu 2023年1月30日 2020年3月28日
  1. 设置特定图的背景色
  2. Matplotlib 设置多个绘图的默认图背景色
Matplotlib 中如何设置绘图背景颜色

axes 对象的 set_facecolor(color) 方法设置背景颜色,或者换句话说,设置相应 plot 的外观颜色。

Matplotlib 设置绘图背景色

设置特定图的背景色

在调用 set_facecolor() 方法之前,我们需要获取 axes 对象。

1. 类似于 Matlab 的 API

plt.plot(x, y)
ax = plt.gca()

完整的示例代码:

import matplotlib.pyplot as plt

plt.plot(range(5), range(5, 10))

ax = plt.gca()
ax.set_facecolor('m')
plt.show()

2. 以面向对象的方法创建图形和轴

可以一起创建图和轴对象,

fig, ax = plt.subplots()

或者先创建 figure,然后再初始化 axes

fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)

完整的示例代码:

import matplotlib.pyplot as plt

fig, ax = plt.subplots(1)

ax.plot(range(5), range(5, 10))

ax.set_facecolor('m')
plt.show()

或者,

import matplotlib.pyplot as plt

fig = plt.figure()
ax = fig.add_subplot(1, 1, 1)

ax.plot(range(5), range(5, 10))

ax.set_facecolor('m')
plt.show()

Matplotlib 设置多个绘图的默认图背景色

如果我们需要为多个绘图设置默认背景色,可以在 rcParams 对象中设置 axes.facecolor 属性。

plt.rcParams['axes.facecolor'] = color

完整的示例代码:

import matplotlib.pyplot as plt

plt.rcParams['axes.facecolor'] = 'm'

plt.subplot(1,2, 1)
plt.plot(range(5), range(5, 10))

plt.subplot(1,2, 2)
plt.plot(range(5), range(10, 5, -1))

plt.show()

Matplotlib 设置绘图背景 Color_rcParams

如你所见,两个图的背景色是相同的。

Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn

相关文章 - Matplotlib Color