首先,为了使用全息视图的抽取运算,我坚持全息视图,但在调整全息视图中的bokeh输出时遇到了限制:
要在纯bokeh中实现“链接平移”,需要共享bokehs bokeh.plotting.figure.Figure对象(如
# create a new plot
s1 = figure(plot_width=250, plot_height=250)
# create a new plot and share only one range
s2 = figure(plot_width=250, plot_height=250, x_range=s1.x_range)
关于:的完整示例
如