In [3]:
import numpy as np
import matplotlib.pyplot as plt
In [4]:
%matplotlib inline
In [5]:
x = np.arange(0, 2*np.pi, np.pi/10)
s = np.sin(x)
In [6]:
plt.plot(x,s)
Out[6]: