In [1]:
1+1 
Out[1]:
2
In [5]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
plt.plot(np.random.randn(100))
In [7]:
ls *.png
In [10]:
plt.plot(np.sin(2*np.pi*0.01*np.arange(200)))
Out[10]:
[<matplotlib.lines.Line2D at 0x7fa5eba84d30>]