如何交互式地显示和隐藏散景图中的线条?
How to interactively display and hide lines in a Bokeh plot?
如果能够在散景图中交互式地显示和隐藏线条就好了。比如说,我创建了这样的情节:
from bokeh.plotting import output_file, figure, show
from numpy.random import normal, uniform
meas_data_1 = normal(0, 1, 100)
meas_data_2 = uniform(-0.5, 0.5, 100)
output_file("myplot.html", title="My plot")
fig = figure(width=500, plot_height=500)
fig.line(x=range(0, len(meas_data_1)), y=meas_data_1)
fig.line(x=range(0, len(meas_data_2)), y=meas_data_2)
show(fig)
我怎样才能添加交互式 enable/disable 两行之一的可能性?
我知道这在愿望清单上(参见 this feature request),但这听起来不会太快实施。
我的印象是使用 CheckBoxGroup and a self-defined callback 应该可以做到这一点,但不幸的是,这个回调必须用 JavaScript 编写,我对此完全没有经验。
我可能错了,但在我看来,各行没有可用的 ID,隐藏它们的一种方法是 document.getElementById("idSelected").style.visibility = "hidden";
因为 CheckBoxGroup
没有可用的回调,我决定使用 Select
。
我可以在 CustomJS
中获取选定的源,但仅此而已:
from bokeh.io import vform
from bokeh.models import CustomJS, ColumnDataSource, Select
from bokeh.plotting import output_file, figure, show
from numpy.random import normal, uniform
meas_data_1 = normal(0, 1, 10)
meas_data_2 = uniform(-0.5, 0.5, 10)
x1 = range(0, len(meas_data_1))
y1 = meas_data_1
source1 = ColumnDataSource(data=dict(x=x1, y=y1))
x2 = range(0, len(meas_data_2))
y2 = meas_data_2
source2 = ColumnDataSource(data=dict(x=x2, y=y2))
output_file("myplot.html", title="My plot")
fig = figure(width=500, plot_height=500)
fig.line('x', 'y', source=source1, line_width=3, line_alpha=0.6)
fig.line('x', 'y', source=source2, line_width=3, line_alpha=0.6)
select = Select(title="Option:", options=["source1", "source2"])
select.callback = CustomJS(args=dict(source1=source1, source2=source2, select=select), code="""
console.log(select.attributes.value);
""")
show(vform(fig, select))
也许您可以 "tweak" CustomJS
中的数据,根据选择的内容使其全部为 0,或者如果您可以访问 line_width 属性 和让它变成0,但我能想到的差不多就是这些了。
编辑:从 Bokeh 0.12.5
开始,交互式图例现已内置到库中,参见 https://bokeh.github.io/blog/2017/4/5/release-0-12-5/
这似乎有望在某个时候作为交互式图例实施:
https://github.com/bokeh/bokeh/issues/3715
目前 (v0.12.1),有一个在复选框上使用 CustomJS 来实现此目的的示例:
https://github.com/bokeh/bokeh/pull/4868
相关代码:
import numpy as np
from bokeh.io import output_file, show
from bokeh.layouts import row
from bokeh.palettes import Viridis3
from bokeh.plotting import figure
from bokeh.models import CheckboxGroup, CustomJS
output_file("line_on_off.html", title="line_on_off.py example")
p = figure()
props = dict(line_width=4, line_alpha=0.7)
x = np.linspace(0, 4 * np.pi, 100)
l0 = p.line(x, np.sin(x), color=Viridis3[0], legend="Line 0", **props)
l1 = p.line(x, 4 * np.cos(x), color=Viridis3[1], legend="Line 1", **props)
l2 = p.line(x, np.tan(x), color=Viridis3[2], legend="Line 2", **props)
checkbox = CheckboxGroup(labels=["Line 0", "Line 1", "Line 2"],
active=[0, 1, 2], width=100)
checkbox.callback = CustomJS(args=dict(l0=l0, l1=l1, l2=l2, checkbox=checkbox),
lang="coffeescript", code="""
l0.visible = 0 in checkbox.active;
l1.visible = 1 in checkbox.active;
l2.visible = 2 in checkbox.active;
""")
layout = row(checkbox, p)
show(layout)
如果能够在散景图中交互式地显示和隐藏线条就好了。比如说,我创建了这样的情节:
from bokeh.plotting import output_file, figure, show
from numpy.random import normal, uniform
meas_data_1 = normal(0, 1, 100)
meas_data_2 = uniform(-0.5, 0.5, 100)
output_file("myplot.html", title="My plot")
fig = figure(width=500, plot_height=500)
fig.line(x=range(0, len(meas_data_1)), y=meas_data_1)
fig.line(x=range(0, len(meas_data_2)), y=meas_data_2)
show(fig)
我怎样才能添加交互式 enable/disable 两行之一的可能性?
我知道这在愿望清单上(参见 this feature request),但这听起来不会太快实施。
我的印象是使用 CheckBoxGroup and a self-defined callback 应该可以做到这一点,但不幸的是,这个回调必须用 JavaScript 编写,我对此完全没有经验。
我可能错了,但在我看来,各行没有可用的 ID,隐藏它们的一种方法是 document.getElementById("idSelected").style.visibility = "hidden";
因为 CheckBoxGroup
没有可用的回调,我决定使用 Select
。
我可以在 CustomJS
中获取选定的源,但仅此而已:
from bokeh.io import vform
from bokeh.models import CustomJS, ColumnDataSource, Select
from bokeh.plotting import output_file, figure, show
from numpy.random import normal, uniform
meas_data_1 = normal(0, 1, 10)
meas_data_2 = uniform(-0.5, 0.5, 10)
x1 = range(0, len(meas_data_1))
y1 = meas_data_1
source1 = ColumnDataSource(data=dict(x=x1, y=y1))
x2 = range(0, len(meas_data_2))
y2 = meas_data_2
source2 = ColumnDataSource(data=dict(x=x2, y=y2))
output_file("myplot.html", title="My plot")
fig = figure(width=500, plot_height=500)
fig.line('x', 'y', source=source1, line_width=3, line_alpha=0.6)
fig.line('x', 'y', source=source2, line_width=3, line_alpha=0.6)
select = Select(title="Option:", options=["source1", "source2"])
select.callback = CustomJS(args=dict(source1=source1, source2=source2, select=select), code="""
console.log(select.attributes.value);
""")
show(vform(fig, select))
也许您可以 "tweak" CustomJS
中的数据,根据选择的内容使其全部为 0,或者如果您可以访问 line_width 属性 和让它变成0,但我能想到的差不多就是这些了。
编辑:从 Bokeh 0.12.5
开始,交互式图例现已内置到库中,参见 https://bokeh.github.io/blog/2017/4/5/release-0-12-5/
这似乎有望在某个时候作为交互式图例实施: https://github.com/bokeh/bokeh/issues/3715
目前 (v0.12.1),有一个在复选框上使用 CustomJS 来实现此目的的示例: https://github.com/bokeh/bokeh/pull/4868
相关代码:
import numpy as np
from bokeh.io import output_file, show
from bokeh.layouts import row
from bokeh.palettes import Viridis3
from bokeh.plotting import figure
from bokeh.models import CheckboxGroup, CustomJS
output_file("line_on_off.html", title="line_on_off.py example")
p = figure()
props = dict(line_width=4, line_alpha=0.7)
x = np.linspace(0, 4 * np.pi, 100)
l0 = p.line(x, np.sin(x), color=Viridis3[0], legend="Line 0", **props)
l1 = p.line(x, 4 * np.cos(x), color=Viridis3[1], legend="Line 1", **props)
l2 = p.line(x, np.tan(x), color=Viridis3[2], legend="Line 2", **props)
checkbox = CheckboxGroup(labels=["Line 0", "Line 1", "Line 2"],
active=[0, 1, 2], width=100)
checkbox.callback = CustomJS(args=dict(l0=l0, l1=l1, l2=l2, checkbox=checkbox),
lang="coffeescript", code="""
l0.visible = 0 in checkbox.active;
l1.visible = 1 in checkbox.active;
l2.visible = 2 in checkbox.active;
""")
layout = row(checkbox, p)
show(layout)