gpt4 book ai didi

python - 使用 python 和 matplotlib 的多图(不是子图)

转载 作者:行者123 更新时间:2023-12-05 04:11:49 24 4
gpt4 key购买 nike

我想使用 pythonmatplotlib 一次绘制两个或多个图形。我不想使用子图,因为它实际上是同一张绘图纸上的两个或多个图。

有什么办法吗?

最佳答案

您可以使用多个图形并在每个图形中绘制一些数据。最简单的方法是调用 plt.figure() 并使用 pyplot 状态机。

import matplotlib.pyplot as plt

plt.figure() # creates a figure
plt.plot([1,2,3])

plt.figure() # creates a new figure
plt.plot([3,2,1])

plt.show() # opens a window for each of the figures

如果出于某种原因在创建第二个图形后要绘制到第一个图形,则需要通过“激活”它

plt.figure(1)
plt.plot([2,3,1]) # this is plotted to the first figure.

(图号从1开始)

关于python - 使用 python 和 matplotlib 的多图(不是子图),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41905379/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com