In [4]:
from matplotlib.pyplot import plot
plot([258.1,257.1,256.6,257.7,257.6,254.3,251.8,252.6])
Out[4]:
The pylab magic was removed when they transitioned from IPython to a more general Jupyter notebook.
Try: %matplotlib inline when you get a message like:"matplotlib.axes._subplots.AxesSubplot at 0xebf8b70".
That's just IPython displaying the object. You need to specify IPython display it. Hence the matplotlib inline magic.
In [1]:
1+2
Out[1]:
In [ ]: