我想更改Bokeh中DataTable的行数。 我有DataFrame并按一定时期(例如每天和每月)对其进行重新采样。 所以我在下面用过。
period_list = ["hour", "day", "week", "month", "year"]
period_select = Select(title="test", value="day", options=period_list)
def update_graph(attrname, old, new):
table_source = <resampling code>
DataTable.source = table_source
period_select.on_change('value', update_graph)
我希望更改行数, 但是DataTable的行数没有更改。
最初,DataTable显示2行(2天中每一天的总和)。 当我选择“小时”时,我希望它显示48行,但仅显示前2行。 如何更改行数?