我正在使用Bokeh方法通过show
生成包含数字的HTML代码,该方法以打开其中打开了HTML的默认浏览器结束。
我想保存HTML代码,但不显示它。我该怎么办?
解决方案是将对show
的调用替换为对save
的调用。
使用output_file({file_name})
代替output_notebook()
。您可以调用save
或show
方法。记住,每次调用保存或显示方法时,文件都会被重写。
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("output_file_name.html")
save(p)