Bug : Need to run plt.plot() twice from a freshly started notebook to see the plot · Issue #3691 · jupyter/notebook (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Appearance settings

@sebma

Description

@sebma

Hi,

Steps to reproduce :

  1. Save, then shutdown current notebook (using the "Running" tab)
  2. Click on the ".ipynb" file to start the notebook OR Create a new notebook
  3. 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>]

image

Can you please have a look ?