In [1]:
using PyPlot


Loading help data...

In [2]:
1+1


Out[2]:
2

In [8]:
x = linspace(0,2*pi,1000); y = sin(x);

In [11]:
plot(x, y, color="red", linewidth=2.0)


Out[11]:
1-element Array{Any,1}:
 PyObject <matplotlib.lines.Line2D object at 0xec1c56c>

In [ ]: