如何在另一个 Python 图形中添加不同的图形(作为插图)?


要在另一个 Python 图形中添加不同的图形(作为插图),我们可以采取以下步骤 −

  • 使用 numpy 创建 数据点。

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

  • 要创建新轴,请将 axis 添加到现有图形(步骤 2)。

  • 在轴上绘制 (步骤 2)。

  • 在新轴上绘制 (步骤 3)。

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

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(-1, 1, 100)
y = np.sin(x)
fig, ax = plt.subplots()
left, bottom, width, height = [.30, 0.6, 0.2, 0.25]
ax_new = fig.add_axes([left, bottom, width, height])
ax.plot(x, y, color='red')
ax_new.plot(x, y, color='green')
plt.show()

输出

更新于: 06-May-2021

1K+ 浏览

开启你的职业生涯

完成课程以获得认证

开始
广告