假设我通过for循环在matplotlib中制作了一系列AnnotationBox,如下所示:
for city in cities:
x, y = self.map(city[1], city[0])
ab = AnnotationBbox(imagebox, [x,y],
xybox=(0, 0),
xycoords='data',
boxcoords="offset points",
frameon=False)
self.axes.add_artist(ab)
self.locationImages.append(ab)
在这个例子中,我创建了一系列AnnotationBox,并将它们存储在一个名为self.locationImages的列表中
for image in self.locationImages:
image.remove()
有没有一种方法可以去除所有的艺术家,而不必经过一个循环?或者完全删除所有艺术家和线条,而不必删除轴或图形?
我在地图上画点,我需要地图留下来。我正在放大和缩小,但在放大和缩小过程中,我需要删除所有内容并重新打印。我正在处理一个大型数据集,进行迭代是一项昂贵的操作
我认为一个非常糟糕的解决方案是执行以下操作:
# remove all artists
while ax.artists != []:
ax.artists[0].remove()
#remove all lines
while ax.lines != []:
ax.lines[0].remove()
这适用于动态绘图(例如动画或ipywidgets
)。但如果你告诉我必须有更好的方法——我肯定会同意:)
从matplotlib的pyplot
界面,您可以pyplot.cla()
清除整个轴,pyplot.clf()
清除整个图形。