从ColumnDataSource中选取Bokeh HoverTool输出的数据

问题描述 投票:2回答:1

我对Bokeh中的HoverTool有点烦恼。我有一个ColumnDataSource,它有多个数据'列',我用各种列来绘制图表上的线条。当我将鼠标悬停在一条线上的一个点上时,我想在该线上显示该点上的'x'(我的CDS中的'rpm'数据)和'y'(我的CDS中的其他列之一)数据。

由于所有行都使用相同的CDS('y'值的不同列),对于我的生活,我无法弄清楚如何区分被悬停的行的'y'值,并仅显示''该行的y'值。目前,我只是显示正在悬停的'x'值的所有'y'值。

我不想使用'$ y'参数,因为这只是光标在图表上的位置,而不是悬停点的数据。

非常感谢你的想法。谢谢。

注意,该程序绘制给定发动机转速的车速,每个系列通过变速器档位。

import itertools
from bokeh.plotting import figure, show
from bokeh.models import ColumnDataSource, HoverTool
from bokeh.palettes import Category20_20 as palette

data={'rpm': range(2000, 4000, 500),
     '1st': [15.00040961597459,
             18.750512019968237,
             22.50061442396188,
             26.25071682795553],
     '2nd': [28.241511931310182,
             35.301889914137725,
             42.36226789696527,
             49.422645879792825],
     '3rd': [45.751249328722494,
             57.18906166090312,
             68.62687399308373,
             80.06468632526436],
     '4th': [66.30615844742391,
             82.8826980592799,
             99.45923767113587,
             116.03577728299183]}

cds = ColumnDataSource(data=data)

fig = figure(width=800, height= 600, title='Speed', x_axis_label='RPM', y_axis_label='Speed(mph)')
hovertools= HoverTool(tooltips=[('Gear', '$name'),
                                ('4th', '@4th{0.0}'),
                                ('3rd', '@3rd{0.0}'),
                                ('2nd', '@2nd{0.0}'),
                                ('1st', '@1st{0.0}'),
                                ('RPM', '@rpm')],)

colors = itertools.cycle(palette)
fig.add_tools(hovertools)
for gear in ('1st', '2nd', '3rd', '4th'):
    color = colors.__next__()
    fig.line(x='rpm',
             y=gear,
             source=cds,
             color=color,
             legend=gear + ' gear',
             muted_color=color,
             muted_alpha=0.2,
             line_width=1,
             name=gear + ' gear')
    fig.circle(x='rpm',
               y=gear,
               source=cds,
               color=color,
               legend=gear + ' gear',
               muted_color=color,
               muted_alpha=0.2,
               line_width=1,
               name=gear + ' gear')

fig.legend.click_policy = "mute"
fig.legend.background_fill_alpha = 0.5

show(fig)
python python-3.x bokeh
1个回答
2
投票

您可以使用@$name查找以$name作为列名的列的值:

hovertools= HoverTool(tooltips=[('Gear', '$name'),
                                ('data', '@$name{0.0}'),
                                ('RPM', '@rpm')],)

但请注意,为此,您在字形方法中为name设置的值必须与列名匹配。例如。我不得不改变:

for gear in ('1st', '2nd', '3rd', '4th'):
    color = colors.__next__()
    fig.line(x='rpm',
             y=gear,
             ...
             name=gear)   # CHANGED to match column name
    fig.circle(x='rpm',
               y=gear,
               ...
               name=gear) # CHANGED to match column name

这会产生:

enter image description here

enter image description here

请注意,在工具提示的“元组”格式中,第一个标签值未显示,因此,如果您需要,例如像每个行的4th gear: <value>,然后你会想要使用Custom Tooltip

© www.soinside.com 2019 - 2024. All rights reserved.