In [1]:
using PyPlot
In [2]:
1+1
Out[2]:
In [8]:
x = linspace(0,2*pi,1000); y = sin(x);
In [11]:
plot(x, y, color="red", linewidth=2.0)
Out[11]:
In [ ]: