In [1]:
using Bokeh
setupnotebook()
In [8]:
x = linspace(0,2pi)
y = [sin(x) cos(x)]
# remove the ; to plot directly
plt=plot(x,y);
In [9]:
plt
Out[9]:
In [4]: