如何在另一个 Python 图表中添加不同的图表(作为插图)?
pythonmatplotlibserver side programmingprogramming
要在另一个 Python 图表中添加不同的图表(作为插图),我们可以采取以下步骤 −
使用 numpy 创建 x 和 y 数据点。
使用 subplots() 方法创建一个图形和一组子图,即 fig 和 ax。
要创建新轴,请将 axis 添加到现有图形(步骤 2)。
在上绘制 x 和 y 轴(步骤 2)。
在新的轴上绘制 x 和 y (步骤 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()