散景悬停工具提示未显示所有数据 - Ipython notebook [英] Bokeh hover tooltip not displaying all data - Ipython notebook

查看:27
本文介绍了散景悬停工具提示未显示所有数据 - Ipython notebook的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在试验散景和混合代码片段.我从 Pandas DataFrame 创建了下面的图形,它正确显示了包含我想要的所有工具元素的图形.但是,工具提示部分显示了数据.

I am experimenting with Bokeh and mixing pieces of code. I created the graph below from a Pandas DataFrame, which displays the graph correctly with all the tool elements I want. However, the tooltip is partially displaying the data.

这是图表:

这是我的代码:

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)  

我已经使用 Firefox 39.0、Chrome 43.0.2357.130(64 位)和 Safari 8.0.7 版进行了测试.我已清除缓存,但在所有浏览器中都出现相同的错误.我还执行了 pip install bokeh --upgrade 以确保我运行的是最新版本.

I have tested with Firefox 39.0, Chrome 43.0.2357.130 (64-bit) and Safari Version 8.0.7. I have cleared the cache and I get the same error in all browsers. Also I did pip install bokeh --upgrade to make sure I have the latest version running.

推荐答案

尝试使用 ColumnDataSource.

悬停工具需要访问数据源才能显示信息.@x@y 是数据单元中的 x-y 值.(@ 前缀比较特殊,只能跟一组有限的变量,@y2 不是其中之一),通常我会使用 $+ column_name 显示我感兴趣的值,例如$weight.请参阅此处了解更多信息.

Hover tool needs to have access to the data source so that it can display info. @x, @y are the x-y values in data unit. (@ prefix is special, can only followed by a limited set of variable, @y2 is not one of them)., Normally I would use $+ column_name to display the value of my interest, such as $weight. See here for more info.

此外,我很惊讶会出现悬停.正如我所认为的那样,hoverTool 不适用于线条字形,正如所指出的 这里

Besides, I am surprised that the hover would appear at all. As I thought hoverTool doesn't work with line glyph, as noted here

尝试以下操作:(我还没有测试过,可能有错别字).

Try the following : (I haven't tested, might have typos).

df = yearly_DF.reset_index() # move index to column.
source = ColumnDataSource(ColumnDataSource.from_df(df)

hover.tooltips = OrderedDict([('x', '@x'),('y', '@y'), ('year', '$index'), ('weight','$weight'), ('muscle_weight','$muscle_weight'), ('body_fat','$bodyfat_p')])

p.line(x='index', y='weight', source=source, legend="Weight")
p.line(x='index', y='muscle_weight', source=source, legend="Muscle Mass", line_color="red")

这篇关于散景悬停工具提示未显示所有数据 - Ipython notebook的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆