La información sobre herramientas de desplazamiento de Bokeh no muestra todos los datos - Ipython notebook

Estoy experimentando con Bokeh y mezclando piezas de código. Creé el gráfico a continuación a partir de un Pandas DataFrame, que muestra el gráfico correctamente con todos los elementos de herramienta que quiero. Sin embargo, la información sobre herramientas muestra parcialmente los datos.

Aquí está el gráfico:

Aquí está mi código:

from bokeh.plotting import figure, show
from bokeh.io import output_notebook
from bokeh.models import HoverTool
from collections import OrderedDict

x  = yearly_DF.index
y0 = yearly_DF.weight.values
y1 = yearly_DF.muscle_weight.values
y2 = yearly_DF.bodyfat_p.values

#output_notebook()

p = figure(plot_width=1000, plot_height=600,
           tools="pan,box_zoom,reset,resize,save,crosshair,hover", 
           title="Annual Weight Change",
           x_axis_label='Year', 
           y_axis_label='Weight',
           toolbar_location="left"
          )

hover = p.select(dict(type=HoverTool))
hover.tooltips = OrderedDict([('Year', '@x'),('Total Weight', '@y0'), ('Muscle Mass', '$y1'), ('BodyFat','$y2')])

output_notebook()

p.line(x, y0, legend="Weight")
p.line(x, y1, legend="Muscle Mass", line_color="red")

show(p)  

He probado con Firefox 39.0, Chrome 43.0.2357.130 (64 bits) y Safari Versión 8.0.7. He borrado el caché y obtengo el mismo error en todos los navegadores. También hice pip install bokeh --upgrade para asegurarme de tener la última versión en ejecución.

Respuestas a la pregunta(2)

Su respuesta a la pregunta