matplotlib。如何在子图之间切换,而不是从头开始重新绘制它们?

发布于 2024-09-09 04:14:11 字数 258 浏览 1 评论 0原文

我创建一个图形并用几个子图填充它。

当新数据到达时,我想将其绘制在给定的子图上。

如何在子图之间切换,以便不必每次都创建新的子图对象?

例子:

from matplotlib.pyplot import figure,

figure()
subplot(2,1,1)
subplot(2,1,2)

# now go back and plot something on subplot 1 ...?

I create a figure and fill it with a couple of subplots.

As new data arrives, I'd like to draw it on a given subplot.

How do I switch between subplots so that I don't have to create new subplot objects each time?

Example:

from matplotlib.pyplot import figure,

figure()
subplot(2,1,1)
subplot(2,1,2)

# now go back and plot something on subplot 1 ...?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

喜爱皱眉﹌ 2024-09-16 04:14:11

将子图分配给变量:

fig = matplotlib.pyplot.figure()

plt1 = fig.add_subplot(2,1,1)
plt2 = fig.add_subplot(2,1,2)

然后您可以参考 plt1plt2 绘制线和点以及您想要的任何其他内容,

请查看 参考 了解您可以对绘图执行的所有操作。

Assign subplot to a variable:

fig = matplotlib.pyplot.figure()

plt1 = fig.add_subplot(2,1,1)
plt2 = fig.add_subplot(2,1,2)

Then you can draw lines and points and whatever else you want with references to plt1 and plt2

Take a look at the reference for everything you can do with the plot.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文