从Jupyter中嵌入的数字中删除Bokeh图标?

时间:2015-12-24 02:08:45

标签: python bokeh jupyter jupyter-notebook

我在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是我机器上此代码的输出。

2 个答案:

答案 0 :(得分:7)

答案 1 :(得分:0)

散景文档说要将toolbar_location设置为None:

p1 = figure(title="Legend Example", tools=TOOLS, toolbar_location=None)