3.6. Figure Interactive — Python
import matplotlib.pyplot as plt %matplotlib notebook x = [1,2,3,4,5] y = [1,2,3,4,5] plt.plot(x, y) plt.show() # doctest: +SKIP
3.6. Figure Interactive — Python
import matplotlib.pyplot as plt %matplotlib notebook x = [1,2,3,4,5] y = [1,2,3,4,5] plt.plot(x, y) plt.show() # doctest: +SKIP