gpt4 book ai didi

python - Matplotlib - 从轴上删除东西

转载 作者:行者123 更新时间:2023-11-30 23:45:49 24 4
gpt4 key购买 nike

我正在寻找方法或其他东西,这将允许我删除一个东西(我知道cla()将清除整个),例如来自轴的线,例如:

x = self.plt.plot([5*a,0],[0,5*b], color = 'black')
self.plt.draw()
#here I want to to remove x, calculate new position and draw again

一切都是在交互模式下完成的。

最佳答案

br@ymir:~/sweethome/temp$ python
Python 2.6.5 (r265:79063, Apr 16 2010, 13:57:41)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import matplotlib.pyplot as plt
>>> plt.ion()
>>> l,=plt.plot([1,2,3],[4,5,6],'bo-') # a figure pops up
>>> l.remove() # nothing happens
>>> plt.draw() # don't forget to redraw
>>>

但如果您只想更改元素,则可以使用 set_ydata(...) 后跟 draw() 来代替。

关于python - Matplotlib - 从轴上删除东西,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9364547/

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