bar.render_notebook()怎么用
时间: 2024-01-22 17:03:08 浏览: 104
解决render-notebook图片不显示.docx
bar.render_notebook()是用于在Jupyter Notebook中显示Bokeh图表的方法。
下面是一个简单的示例代码:
```
from bokeh.plotting import figure, show
from bokeh.io import output_notebook
from bokeh.models import ColumnDataSource
output_notebook()
# 创建数据源
source = ColumnDataSource(data=dict(x=[1, 2, 3, 4], y=[2, 4, 6, 8]))
# 创建图表
p = figure(plot_width=400, plot_height=400)
p.line('x', 'y', source=source, line_width=2)
# 在Notebook中显示图表
show(p)
```
在上面的代码中,我们首先使用`output_notebook()`方法启用Notebook输出。然后,我们创建了一个数据源和一个简单的折线图,并使用`show()`方法在Notebook中显示图表。
如果我们想要使用`bar.render_notebook()`方法来显示图表,我们只需要将最后一行改为:
```
bar.render_notebook()
```
这将会将图表以HTML格式嵌入到Notebook中,并在Notebook中显示。
阅读全文