Bug : Need to run plt.plot() twice from a freshly started notebook to see the plot (original) (raw)
Hi,
Steps to reproduce :
- Save, then shutdown current notebook (using the "Running" tab)
- Click on the ".ipynb" file to start the notebook OR Create a new notebook
- Run this :
In [1]: import matplotlib.pyplot as plt plt.plot([1,2,3,4]) Out[1]: [<matplotlib.lines.Line2D at 0x111a13b00>]
In [2]: plt.plot([1,2,3,4]) Out[2]: [<matplotlib.lines.Line2D at 0x111a13b00>]
Can you please have a look ?