Bokeh - Jupyter Notebook



在 Jupyter notebook 中显示 Bokeh 图与上述非常类似。你需要做的唯一更改是从 bokeh.plotting 模块导入 output_notebook 而不是 output_file。

from bokeh.plotting import figure, output_notebook, show

调用 output_notebook() 函数将 Jupyter notebook 的输出单元格设置为 show() 函数的目标,如下所示 −

output_notebook()
show(p)

在 notebook 单元格中输入代码并运行它。正弦波将显示在 notebook 中。

广告