I can refresh a bokeh picture after updating ColumnDataSource, like this:
t = show(p, notebook_handle=True)
##### new notebook cell #####
src.data['foo'][0] = 'bar'
push_notebook(handle=t)
but, how can I refresh a holoviews picture using python?
I can refresh a bokeh picture after updating ColumnDataSource, like this:
t = show(p, notebook_handle=True)
##### new notebook cell #####
src.data['foo'][0] = 'bar'
push_notebook(handle=t)
but, how can I refresh a holoviews picture using python?