I make several laptops at Jupyter, and I decided to use Bokeh to create interactive scenes. Two things that really bother me are the icons printed in the upper left corner of the graphs and the icons printed after launch output_notebook(). I would like to remove them in order to minimize visual clutter.
Here is a simple script that can be run in Jupyter, demonstrating my problem:
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 is the output of this code on my machine.
source
share