在我的例子中,我想在点击重置按钮时删除一个圆圈。但是,ax.clear()会清除当前图形上的所有圆圈。
有人能告诉我如何只删除部分补丁吗?
import matplotlib.patches as patches
import matplotlib.pyplot as plt
from matplotlib.widgets import Button
fig = plt.figure()
ax = fig.add_subplot(111)
circle1 = patches.Circle((0.3, 0.3), 0.03, fc='r', alpha=0.5)
circle2 = patches.Circle((0.4, 0.3), 0.03, fc='r', alpha=0.5)
button = Button(plt.axes([0.8, 0.025, 0.1, 0.04]), 'Reset', color='g', hovercolor='0.975')
ax.add_patch(circle1)
ax.add_patch(circle2)
def reset(event):
'''what to do here'''
ax.clear()
button.on_clicked(reset)
plt.show()
4条答案
按热度按时间4urapxun1#
试试这个:
也许你更喜欢:
vngu2lb82#
不同的选择是这样的
它会删除所有的补丁。这个选项在Matplotlib〈3.5.0时是可行的。在Matplotlib 3.5.0时,你会得到错误
AttributeError: can't set attribute
在这种情况下,可以使用以下选项
3pmvbmvn3#
我也尝试了答案1,虽然它在这个上下文中工作,但在我自己的代码中不起作用。起作用的是在将补丁添加到轴后删除补丁对象,而不是原始的补丁对象,如下所示:
否则我得到NotImplementedError('无法删除艺术家')错误。
qmb5sa224#
这个简单的解决方案似乎有效: