matplotlib - removing text from a figure - a bug?

Raphael Mameghani raphael at mameghani.de
Mon Feb 11 10:03:36 EST 2013


Does anyone know if the following error message is a matplotlib bug?
Is there an correct/alternative way to remove (or replace) text? Thank
you, Raphael

from matplotlib.figure import Figure
fig = Figure()
caption = fig.suptitle("test")
caption.remove()

Traceback (most recent call last):
  File "<pyshell#6>", line 1, in <module>
    caption.remove()
  File "C:\Programme\Python27\lib\site-packages\matplotlib\artist.py",
line 134, in remove
    raise NotImplementedError('cannot remove artist')
NotImplementedError: cannot remove artist



More information about the Python-list mailing list