如何在Matplotlib中绘制轴外的线?
要在轴外绘制线(例如箭头),我们可以使用 annotate() 方法,
步骤
- 设置图形大小并调整子图之间和周围的填充。
-
创建一个新图或使用现有图并使用 figure() 方法激活它。
-
清除当前图。
-
使用 add_subplot() 方法将一个 ‘~.axes.Axes’ 添加到图中作为子图布局的一部分。
-
使用 annotate() 方法在轴外放置一条线。
-
使用 show() 方法显示图形。
例子
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig = plt.figure(1)
fig.clf()
ax = fig.add_subplot(1, 1, 1)
ax.annotate('', xy=(0, -0.1), xycoords='axes fraction', xytext=(1, -0.1),
arrowprops=dict(arrowstyle="<->", color='b'))
plt.show()