Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

bokeh save html file to directory

from bokeh.plotting import figure, output_file, save
p = figure(title="Basic Title", plot_width=300, plot_height=300)
p.circle([1, 2], [3, 4])
output_file("test.html")
save(p)
 
PREVIOUS NEXT
Tagged: #bokeh #save #html #file #directory
ADD COMMENT
Topic
Name
4+9 =