In [1]:
using Bokeh
setupnotebook()


BokehJS successfully loaded.


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]:

Plot("Bokeh Plot" with 2 datacolumns)


In [4]: