In [1]:
from bokeh.plotting import figure, output_notebook, show
In [2]:
output_notebook()
In [4]:
p = figure()
p.line([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], line_width=2)
show(p)
In [ ]: