我有一个带有线图的图形和另一个带有多线图的图形。当用户从 Select 对象中选择新选项时,绘图会更新。线图正确更新为与 ColumnDataSource 同步。但是,多线图从 pandas 数据框中提取信息。问题是每次我选择一个新选项时,线都会在多线图上累积。
我尝试在 on_change 回调函数中使用它,但不起作用: select.js_on_change('value',CustomJS(args=dict(plot=plot), code="""plot.reset.emit()""" ))
我实际上应该在我的 onchange 回调中包含 CustomJS,但随后出现错误。不知道如何使用它。
###############
# callback function
###############
def callback(attr,old,new):
selected = function_returning_DF_with_data_from_selected_users(select.value,times)
source.data={'index': selected.index, 'count': selected.count}
similar_time_users = get_top_5_neighbors_by_time(times,select.value)
neighbors = function_that_returns_DF_with_selected_user_neighbors()
numlines=len(neighbors.columns)
mypalette=Spectral11[0:numlines]
plot.multi_line(xs=[neighbors.index.values]*numlines,
ys=[neighbors[name].values for name in neighbors, axis=1)],
line_color=mypalette,
line_width=1)
###############
# plotting
###############
select = Select(title="Select user: ", value='', options=user_list)
plot = figure(x_axis_label='Time of the day',y_axis_label='count')
plot.line(x= 'index', y='count', source=source, line_width=5)
plot.multi_line(xs=[neighbors.index.values]*numlines,
ys=[neighbors[name].values for name in neighbors, axis=1)],
line_color=mypalette,
line_width=1)
select.on_change('value',callback)
#select.js_on_change('value',CustomJS(args=dict(plot=plot), code="""plot.reset.emit()"""))
layout = row(widgetbox(select), plot)
curdoc().add_root(layout)
我希望有一个像第一个情节一样的情节: 但是,这是我多次选择后得到的:
有什么建议么?非常感谢!劳尔。