caliber#
from bokeh.plotting import curdoc, figure, show
x = [1, 2, 3, 4, 5]
y = [6, 7, 6, 4, 5]
curdoc().theme = 'caliber'
p = figure(title='caliber', width=300, height=300)
p.line(x, y)
show(p)
from bokeh.plotting import curdoc, figure, show
x = [1, 2, 3, 4, 5]
y = [6, 7, 6, 4, 5]
curdoc().theme = 'caliber'
p = figure(title='caliber', width=300, height=300)
p.line(x, y)
show(p)