In [2]:
from bokeh.plotting import figure, show, output_notebook
x_values = range(7)
y_values = [0.0, 1.0, 1.4, 1.7, 2.0, 2.2, 2.4]
p = figure()
p.line(x_values, y_values)
output_notebook()
show(p)
In [ ]: