Matplotlib 中的进度图
我需要在 matplotlib 中绘制进度图。
我有一个需要绘制的线条列表。但是,我需要一个接一个地显示线条。
第 1 行:(0,0) - (0,1)
第 2 行:(0,1) - (1,1)
第 3 行:(1,1) - (2,2)
我想要的是如下:
I我希望第一个图仅显示第 1 行
我希望第二个图显示第 1 行 + 第 2 行
我希望第三个图显示第 1 行 + 第 2 行 + 第 3 行
我只能在 for 中一次打印 1 行一个循环。如何保存绘图然后用它添加另一条线?
I need to plot a progressing plot in matplotlib.
I have a list of lines that I need to plot. However, I need to show the lines one after the other.
Line 1: (0,0) - (0,1)
Line 2: (0,1) - (1,1)
Line 3: (1,1) - (2,2)
What I want is as follows:
I want the first graph to show only line 1
I want the second graph to show line 1 + line 2
I want the third graph to show line 1 + line 2 + line 3
I was only able to print 1 line at a time in a for a loop. How can I save a plot and then use it to add another line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可行的:
但请注意,通过这种方式,您将在每个图中重新绘制线条
this works:
but note that in this way you are re-drowing the line in each plot