Re: [matplotlib-devel] imshow remove

2009-10-04 Thread Jae-Joon Lee
Thank you for reporting. I guess this was a simple oversight. This should be fixed in the maint. branch and the trunk. Meanwhile, you may manually set the remove method. im = ax.imshow(...) im._remove_method = lambda a: ax.images.remove(a) Regards, -JJ On Thu, Oct 1, 2009 at 3:56 AM, Martin T

[matplotlib-devel] imshow remove

2009-10-01 Thread Martin Teichmann
Hello List, Normally, something added to axes in a plot can later be removed by saying element.remove(). All but images, for example plotted with imshow, since they lack a _remove_method. Is that a bug or a feature? Greetings Martin Teichmann ---