I am doing some animating plots with ion()
function. I want to draw and delete some lines. I found out axvspan()
function, I can plot the lines and shapes with it as I want. But as long as I am doing an animation I also want to delete that lines and shapes. I couldn't find a way to delete them.
Deleting Lines of a Plot Which has Plotted with axvspan()
218 views Asked by sema At
1
Ok I have found the necessary functions. I used
dir()
function to find methods.axvspan()
returns amatplotlib.patches.Polygon
result. This type of data hasset_visible
method, using it asx.set_visible(0)
I removed the lines and shapes.