我在Jupyter制作了一些笔记本,我决定用Bokeh创建互动图。真正让我感到困惑的两件事是图中左上角印有的图标,以及运行output_notebook()
后打印的图标。我想删除这些以帮助减少视觉混乱。
这是一个可以在Jupyter中运行的简单脚本,演示了我的问题:
import numpy as np
from bokeh.plotting import *
output_notebook()
N = 100
x = np.linspace(0, 4*np.pi, N)
y = np.sin(x)
TOOLS = "pan,wheel_zoom,box_zoom,reset,save,box_select"
p1 = figure(title="Legend Example", tools=TOOLS)
p1.circle(x, y, legend="sin(x)")
p1.circle(x, 2*y, legend="2*sin(x)", color="orange", )
p1.circle(x, 3*y, legend="3*sin(x)", color="green", )
show(p1)
Here是我机器上此代码的输出。
答案 0 :(得分:7)
文档中提供了您的问题的答案(使用output_notebook(..., hide_banner=True)
和plot.logo=None
):
http://bokeh.pydata.org/en/latest/docs/reference/resources_embedding.html#bokeh.io.output_notebook
http://bokeh.pydata.org/en/latest/docs/reference/models/plots.html#bokeh.models.plots.Plot.logo
答案 1 :(得分:0)
散景文档说要将toolbar_location设置为None:
p1 = figure(title="Legend Example", tools=TOOLS, toolbar_location=None)