在python散景图中动态链接Span和Slider

时间:2016-08-29 19:42:00

标签: python bokeh

我正在尝试使用散景创建python中的绘图,允许动态可视化分档中的数据。值得一提的是,我对python相对较新,对bokeh非常新,我知道ZERO javascript。我咨询了这个:

Link a Span or Cursor in between plots with Bokeh in Python

和此:

http://bokeh.pydata.org/en/latest/docs/user_guide/interaction/callbacks.html

但是在实施每个部分的必要部分时遇到了麻烦。在添加所请求的功能之前,这是我的代码:

from bokeh.layouts import column, widgetbox
from bokeh.models.widgets import Slider
from bokeh.models import Span, CustomJS

output_file('Raw_Spectra_and_Spillover_Data.html')

# widgets for bin setup
Pix1_LowLow = Slider(start = self.StartDAC, end = self.EndDAC, value = 129, step = 1, title = 'Pixel-1 - Low Bin - Low Thresh')
Pix1_LowHigh = Slider(start = self.StartDAC, end = self.EndDAC, value = 204, step = 1, title = 'Pixel-1 - Low Bin - High Thresh')
Pix1_HighLow = Slider(start = self.StartDAC, end = self.EndDAC, value = 218, step = 1, title = 'Pixel-1 - High Bin - Low Thresh')
Pix1_HighHigh = Slider(start = self.StartDAC, end = self.EndDAC, value = 500, step = 1, title = 'Pixel-1 - High Bin - High Thresh')

plot1spect = figure(width=700, height=250, title='pixel-1 Spectrum')
plot1spect.line(self.SpectDACvals1[0], self.SpectrumData1[0], line_width=2)
plot1spect_LowLowSpan = Span(location=Pix1_LowLow.value, dimension = 'height')
plot1spect_LowHighSpan = Span(location=Pix1_LowHigh.value, dimension = 'height')
plot1spect_HighLowSpan = Span(location=Pix1_HighLow.value, dimension = 'height')
plot1spect_HighHighSpan = Span(location=Pix1_HighHigh.value, dimension = 'height')
plot1spect.renderers.extend([plot1spect_LowLowSpan, plot1spect_LowHighSpan, plot1spect_HighLowSpan, plot1spect_HighHighSpan])

plot1spill = figure(width=700, height=250, title='pixel-1 Spillover')
plot1spill.line(self.SpillDACvals1[0], self.SpillData1[0], line_width=2)
plot1spill_LowLowSpan = Span(location=Pix1_LowLow.value, dimension = 'height')
plot1spill_LowHighSpan = Span(location=Pix1_LowHigh.value, dimension = 'height')
plot1spill_HighLowSpan = Span(location=Pix1_HighLow.value, dimension = 'height')
plot1spill_HighHighSpan = Span(location=Pix1_HighHigh.value, dimension = 'height')
plot1spill.renderers.extend([plot1spill_LowLowSpan, plot1spill_LowHighSpan, plot1spill_HighLowSpan, plot1spill_HighHighSpan])

show(row(plot1spect,plot1spill, widgetbox(Pix1_LowLow, Pix1_LowHigh, Pix1_HighLow, Pix1_HighHigh)))

这段代码给了我这个:

Bokeh plot of code above.

如果有人可以告诉我如何让Pix1_LowLow滑块动态控制plot1spect_LowLowSpan的位置,那么我可以将该技术扩展到其他滑块和跨度。非常感谢提前!

python 3.5.2 - bokeh 12.0

2 个答案:

答案 0 :(得分:5)

这是一个最小的完整示例。请注意,添加Span等注释的推荐方法是plot.add_layout,如下所示:

from bokeh.layouts import row, widgetbox
from bokeh.models import Slider, Span, CustomJS
from bokeh.plotting import figure, output_file, show

slider = Slider(start=0, end=10, value=3, step=0.1, title='Slider')

plot = figure(width=700, height=250, x_range=(0,10), y_range=(-1, 1))
span = Span(location=slider.value, dimension='height')
plot.add_layout(span)

slider.callback = CustomJS(args=dict(span=span, slider=slider), code="""
    span.location = slider.value
""")

output_file('span_slider.html')

show(row(plot, widgetbox(slider)))

答案 1 :(得分:0)

感谢@bigreddot提供答案。这是专门实现我的解决方案的代码...现在如何以编程方式为128个数据文件执行此操作...嗯...

    from bokeh.layouts import row, widgetbox
    from bokeh.models import Span, CustomJS, Slider

    output_file('Raw_Spectra_and_Spillover_Data.html')

    # widgets for bin setup
    Pix1_LowLow = Slider(start = self.StartDAC, end = self.EndDAC, value = 129, step = 1, title = 'Pixel-1 - Low Bin - Low Thresh')
    Pix1_LowHigh = Slider(start = self.StartDAC, end = self.EndDAC, value = 204, step = 1, title = 'Pixel-1 - Low Bin - High Thresh')
    Pix1_HighLow = Slider(start = self.StartDAC, end = self.EndDAC, value = 218, step = 1, title = 'Pixel-1 - High Bin - Low Thresh')
    Pix1_HighHigh = Slider(start = self.StartDAC, end = self.EndDAC, value = 500, step = 1, title = 'Pixel-1 - High Bin - High Thresh')

    plot1spect = figure(width=700, height=250, title='pixel-1 Spectrum')
    plot1spect.line(self.SpectDACvals1[0], self.SpectrumData1[0], line_width=2)
    plot1spect_LowLowSpan = Span(location=Pix1_LowLow.value, dimension = 'height')
    plot1spect.add_layout(plot1spect_LowLowSpan)
    plot1spect_LowHighSpan = Span(location=Pix1_LowHigh.value, dimension = 'height')
    plot1spect.add_layout(plot1spect_LowHighSpan)
    plot1spect_HighLowSpan = Span(location=Pix1_HighLow.value, dimension = 'height')
    plot1spect.add_layout(plot1spect_HighLowSpan)
    plot1spect_HighHighSpan = Span(location=Pix1_HighHigh.value, dimension = 'height')
    plot1spect.add_layout(plot1spect_HighHighSpan)
    #plot1spect.renderers.extend([plot1spect_LowLowSpan, plot1spect_LowHighSpan, plot1spect_HighLowSpan, plot1spect_HighHighSpan])

    plot1spill = figure(width=700, height=250, title='pixel-1 Spillover')
    plot1spill.line(self.SpillDACvals1[0], self.SpillData1[0], line_width=2)
    plot1spill_LowLowSpan = Span(location=Pix1_LowLow.value, dimension = 'height')
    plot1spill.add_layout(plot1spill_LowLowSpan)
    plot1spill_LowHighSpan = Span(location=Pix1_LowHigh.value, dimension = 'height')
    plot1spill.add_layout(plot1spill_LowHighSpan)
    plot1spill_HighLowSpan = Span(location=Pix1_HighLow.value, dimension = 'height')
    plot1spill.add_layout(plot1spill_HighLowSpan)
    plot1spill_HighHighSpan = Span(location=Pix1_HighHigh.value, dimension = 'height')
    plot1spill.add_layout(plot1spill_HighHighSpan)
    #plot1spill.renderers.extend([plot1spill_LowLowSpan, plot1spill_LowHighSpan, plot1spill_HighLowSpan, plot1spill_HighHighSpan])

    Pix1_LowLow.callback = CustomJS(args=dict(span1 = plot1spect_LowLowSpan,
                                              span2 = plot1spill_LowLowSpan,
                                              slider = Pix1_LowLow),
                                              code = """span1.location = slider.value; span2.location = slider.value""")
    Pix1_LowHigh.callback = CustomJS(args=dict(span1 = plot1spect_LowHighSpan,
                                               span2 = plot1spill_LowHighSpan,
                                               slider = Pix1_LowHigh),
                                               code = """span1.location = slider.value; span2.location = slider.value""")
    Pix1_HighLow.callback = CustomJS(args=dict(span1 = plot1spect_HighLowSpan,
                                               span2 = plot1spill_HighLowSpan,
                                               slider = Pix1_HighLow),
                                               code = """span1.location = slider.value; span2.location = slider.value""")
    Pix1_HighHigh.callback = CustomJS(args=dict(span1 = plot1spect_HighHighSpan,
                                                span2 = plot1spill_HighHighSpan,
                                                slider = Pix1_HighHigh),
                                                code = """span1.location = slider.value; span2.location = slider.value""")

这是重复的图,但现在每个滑块都操纵两个图中的相应跨度......

enter image description here