在matplotlib中,您可以像这样共享绘图之间的x轴:

plt.subplots(nrows=2, sharex=True)

我想在Bokeh中做类似的事情,在其中我放大一个,然后再放大另一个,依此类推。在Bokeh中我将如何做?

最佳答案

用户指南的Linking Plots部分对此进行了说明。您只需要共享范围对象:

p1 = figure()

# share just the x-range between these plots
p2 = figure(x_range=p1.x_range)

09-25 16:12