I'm looking for method that will allow me to update axis when my script is running but, I couldn't find it. For example:
import matplotlib.pyplot as plt
x = (1,2)
y = (1,2)
plt.plot(x,y, 'r-')
plt.show()
#here during run of program I want to clear axis with help of plt.cla() and update it
#new one
# x = (2,4)
# y = (2,4)
#plt.plot(x,y, 'b-')