Bokeh - Plots with Glyphs

PHOTO EMBED

Wed Aug 24 2022 17:14:24 GMT+0000 (Coordinated Universal Time)

Saved by @robinaar #python #bokeh

from bokeh.plotting import figure, output_file, show
x = [1,2,3,4,5]
y = [2,4,6,8,10]
output_file('line.html')
fig = figure(title = 'Line Plot example', x_axis_label = 'x', y_axis_label = 'y')
fig.line(x,y)
show(fig)
content_copyCOPY

https://www.tutorialspoint.com/bokeh/bokeh_plots_with_glyphs.htm