Bokeh - Plots with Glyphs

PHOTO EMBED

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

Saved by @robinaar #python #bokeh

from bokeh.plotting import figure, output_file, show
fig = figure(plot_width = 400, plot_height = 200)
fig.hbar(y = [2,4,6], height = 1, left = 0, right = [1,2,3], color = "Cyan")
output_file('bar.html')
show(fig)
content_copyCOPY

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