在 Matplotlib 子图中嵌入小图


要在子图中嵌入小图,我们可以采取以下步骤 -

  • 使用 subplots() 方法,创建图形和一组子图 (fig, ax1)

  • ax1 上,绘制一条红色线条,线宽=4,标签为“外部图”。

  • 使用 add_axes(),添加一个坐标轴,即 ax2,带有 l、b、hw 值。

  • 使用 plot() 方法绘制相同的点(步骤 2),颜色为绿色,线宽为 3,标签为“内部图”。

  • 在两个图上使用 legend() 方法设置图例。

  • 要显示图形,请使用 show() 方法。

示例

from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, ax1 = plt.subplots()
ax1.plot([1, 4, 6, 2, 1, 5, 2], c="red", lw=4, label="outer plot")
l, b, h, w = .6, .75, .1, .2
ax2 = fig.add_axes([l, b, w, h])
ax2.plot([1, 4, 6, 2, 1, 5, 2], color='green', lw=3, label="inside plot")
ax1.legend(loc='upper left')
ax2.legend(loc='upper left')
plt.show()

输出

更新于: 09-Apr-2021

4K+ 浏览

助力您的职业

通过完成课程获得认证

开始吧
广告