Online Bokeh Compiler

Code, compile, and run Bokeh programs online

Python
from bokeh.plotting import figure, show
p = figure(width=400, height=400)
p.circle([1, 2, 3, 4, 5], [6, 7, 2, 4, 5], size=20, color="navy", alpha=0.5)
show(p)
AI Prompt