我用散景和Python创建了两个并排绘制的图形,然后我创建了另外两个图形。这些现在绘制在前两个下方。我想要的是用新的替换前两个。有没有办法清除旧的并用新的覆盖它们,或者至少得到它们的句柄?
这是一个简单的例子
# test.py
from bokeh.layouts import Row
from bokeh.layouts import column
from bokeh.plotting import figure, curdoc
# new plots
s1 = figure(title="my data 1", x_axis_label='x', y_axis_label='y')
s2 = figure(title="my data 2", x_axis_label='x', y_axis_label='y')
# my data
x = [1, 2, 3, 4, 5]
y1 = [1, 2, 3, 4, 5]
y2 = [3, 5, 7, 9, 11]
# plot lines
s1.line(x, y1, legend="data1", line_width=2)
s2.line(x, y2, legend="data2", line_width=3)
p = Row(s1, s2)
curdoc().add_root(column(p))
print "plot 1 done"
# plot lines again
s1 = figure(title="my data 1", x_axis_label='x', y_axis_label='y')
s2 = figure(title="my data 2", x_axis_label='x', y_axis_label='y')
s1.line(x, y1, legend="data1", line_width=2)
s2.line(x, y2, legend="data2", line_width=3)
p = Row(s1, s2)
curdoc().add_root(column(p))
print "plot 2 done"
我找到了答案。对于这个简单的例子,需要添加
curdoc().clear()
第二个之前
curdoc().add_root(column(p))
如果您想在保持按钮或其他功能处于活动状态的同时执行此操作(因为清除会删除所有内容),这里是如何处理它的示例: