In [1]:
from bokeh.plotting import figure
from bokeh.io import output_file, show
In [10]:
x = [1, 2, 3, 4, 5]
y = [6, 7, 8, 12, 10]
output_file("bokeh-lineplot.html")
f = figure()
f.line(x=x, y=y)
f.circle(x=x, y=y)
show(f)
In [ ]:
In [ ]: