5 Introduction to Matplotlib

Plotting can seem a little mystical because the actual plot doesn't appear until plt.show() is executed. Matplotlib's interactive mode allows the user to see the plot be constructed one piece at a time. Use plt.ion() to turn interactive mode on and plt.ioff() to turn it o . This is ................
................