1

我有一个带有线图的图形和另一个带有多线图的图形。当用户从 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)

我希望有一个像第一个情节一样的情节: 图 1:预期结果 但是,这是我多次选择后得到的: 图1:现实

有什么建议么?非常感谢!劳尔。

4

1 回答 1

1

调用字形方法是加法的。一遍又一遍地调用multi_line每次都会添加新的多行,而不会删除以前添加的任何内容。对于这种用例,您应该做的是仅调用一次multi_line(或您可能使用的任何字形),然后再仅更新数据源。例如:

source = ColumnDataSource(data=dict(xs=..., ys==...)
plot.multi_line(xs='xs', ys='ys', ..., source=source)

def callback(attr,old,new):
    source.data = new_data_dict
于 2019-07-22T15:29:29.213 回答