如何在 Matplotlib 中独立显示图形?
要在 matplotlib 中显示多个图形,我们可以按以下步骤操作 -
要创建新图形或激活现有图形,请使用方法 figure()。(例如,创建图形 1 和图形 2)。
使用相同的列表绘制线(颜色红色和绿色,线宽 2 和 5)。
设置两个图形的图表的标题。
要显示图形,请使用方法 show()。
示例
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig1 = plt.figure("Figure 1") plt.plot([1, 3, 7, 3, 1], c="red", lw=2) plt.title("I am the part of figure 1") fig2 = plt.figure("Figure 2") plt.plot([1, 3, 7, 3, 1], c="green", lw=5) plt.title("I am the part of figure 2") plt.show()
输出
广告