How to update figure text in matplotlib figure in python 2.7?
t = figtext(.78,.92, "Combined- Sensors ", horizontalalignment = 'center',fontsize=15,color= 'm')
I have tried using t.remove() but I am getting an error:
traceback (most recent call last):
File "C:\Python27\combined.py", line 245, in <module>
t.remove()
File "C:\Python27\lib\site-packages\matplotlib\artist.py", line 137, in remove
raise NotImplementedError('cannot remove artist')
NotImplementedError: cannot remove artist
Is there any other way to do this?