Plot with glyphs
Plot line, bar, patch and scatter plots.
x = [1,3,4,5]
y = [2,6,8,4]Basic line plot
from bokeh.plotting import figure, output_file, show
output_file("line.html")
p = figure()
p.line(x,y)
show(p)
Basic bar plot

Basic scatter plot

Last updated
