2
我正在處理四組數據,每組數據都有幾個時間序列。我使用的背景虛化密謀所有的人都在一起,結果是這樣的:使用MultiSelect小部件來隱藏和顯示散景中的線條
multiline graph bokeh with widget
from bokeh.plotting import figure, output_file, show
from bokeh.palettes import RdYlGn4
from bokeh.models import CustomJS, ColumnDataSource, MultiSelect
from bokeh.layouts import row, widgetbox
output_file("graph.html")
p = figure(plot_width=1000, plot_height=400, x_axis_type="datetime", title="title")
cadena=range(4)
for i,comp in enumerate(cadena):
ts=[t for t in data_plu_price.columns if int(t) in df.T[df.C==comp].values]
n_lines=len(data[ts].columns)
p.multi_line(xs=[data[ts].index.values]*n_lines, ys=[data[t].values for t in ts],line_color=RdYlGn4[i], legend=str(i))
p.title.align = "center"
p.title.text_font_size = "20px"
p.xaxis.axis_label = 'date'
p.yaxis.axis_label = 'price'
callback = CustomJS("""Some Code""")
multi_select = MultiSelect(title="Select:", value=cadena,
options=[(str(i), str(i)) for i in range(4)])
layout = row(p,widgetbox(multi_select))
show(layout)
的問題是,它看起來真的很亂,所以我溫熱使用多選小工具來顯示/隱藏所有多線組(4)。我需要在創建multi_line
時使用哪種代碼以及用於進行此交互的回調對象?
任何指導?
在此先感謝。剛添加
有一個與聽者的執行出了問題,你可以自己嘗試的原代碼,檢查框不隱藏一定要行,也許是一個crossbrowsing問題js和鉻。 如果使用'checkbox.active.includes(1)'將所有句子'(checkbox.active中的1)'更改爲將執行該作業的語句。 即使壽,得到的答案是非常有幫助的 –
'checkbox.active.includes'結果'SCRIPT438:對象不支持屬性或方法「包含」 文件:功能碼(1),線:3,柱:5 '在IE11 –
和我同意@ pablo-他的評論。這不會隱藏正確的行,只是第一個* n *行被選中,所以如果你選擇第0行和第2行,它會顯示0和1(前2) –