如何设置Matplotlib图形的边距?
要设置matplotlib图形的边距,我们可以使用 margins() 方法。
步骤
- 设置图形大小并调整子图之间和周围的填充。
- 使用numpy创建 t 和 y 数据点。
- 在索引1上为当前图形添加子图。
- 使用 plot() 方法绘制t和y数据点。
- 设置图的标题。
- 在索引2上为当前图形添加子图。
- 使用 plot() 方法绘制t和y数据点。
- 设置图的标题。
- 使用 margins(x=0, y=0) 设置图的边距。
- 使用 show() 方法显示图形。
示例
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
t = np.linspace(-2, 2, 10)
y = np.exp(-t)
plt.subplot(121)
plt.plot(t, y)
plt.title("Without margins")
plt.subplot(122)
plt.plot(t, y)
plt.title("With x=0 and y=0 margins")
plt.margins(x=0, y=0)
plt.show()