Panel在新版bokeh中如何导入
时间: 2023-11-28 08:06:22 浏览: 115
python bokeh_使用Bokeh在Python中进行交互式数据可视化.pdf
在新版的 Bokeh 中,Panel 已经成为了 Bokeh 的一个子模块,因此可以使用以下方式导入 Panel:
``` python
from bokeh import palettes
from bokeh.plotting import figure, show
from bokeh.sampledata.iris import flowers
from bokeh.io import output_notebook
from bokeh.models import ColumnDataSource
from bokeh.palettes import Spectral6
from bokeh.layouts import column, row
import panel as pn
pn.extension()
```
需要注意的是,为了使用 Panel 所提供的所有功能,需要事先安装 Panel 库。可以使用以下命令进行安装:
``` python
!pip install panel
```
另外,`pn.extension()` 方法需要在 notebook 中运行,以启用 Panel 的交互式功能。如果在 Python 脚本中使用 Panel,可以将 `pn.extension()` 替换为 `pn.serve()`,以启动一个本地的 Panel 服务器。
阅读全文