In [1]:
%matplotlib inline
import math
import matplotlib.pyplot as plt
import numpy 
x = numpy.arange(1,10,0.1)
y = numpy.sin(x)
plt.plot(x, y)


Out[1]:
[<matplotlib.lines.Line2D at 0x7f0182bd3c90>]

In [ ]:


In [ ]: