来源不断变化的.csv散景数据表

时间:2019-06-03 11:28:31

标签: javascript python bokeh bokehjs

我在我的应用中使用了Export.csv示例。该功能可以在静态表上正常工作。但是,我还有另一个回调,该回调使用MultiSelect小部件将某些选择应用于数据并更新table.source-一切正常,并在浏览器中更新表。

但是,当我做出选择时,更新后的数据无法导出到.csv,原始数据将被导出。导出到.csv时,如何让CustomJS使用更新的table.source?

def update_table(attr, old, new):
    new_df = new_pandas_dataframe()
    table.source =  ColumnDataSource(new_df)
    table.columns = [TableColumn(field=col, title=col) for col in new_df.columns]

# change drop down options
multi_select.on_change("value",update_table)

0 个答案:

没有答案