我有两个使用框选择工具的散点图,并通过x值链接。我试图通过ID值链接图。使用现有的Bokeh API有一种简单的方法吗?
import numpy as np
from bokeh.plotting import figure, output_file, show, gridplot
from bokeh.models import ColumnDataSource
N = 100
max = 100
x = np.random.random(size=N) * max
y1 = np.random.random(size=N) * max
y2 = np.random.random(size=N) * max
id = np.random.random(size=N) * max
output_file("scatter.html")
source = ColumnDataSource(data=dict(x=x, y1=y1, y2=y2))
TOOLS="box_select"
left = figure(width=400, height=400, tools=TOOLS, x_range=(0,100), y_range=(0,100))
left.circle("x", "y1", source=source, size=10, fill_color="black", line_color=None)
right = figure(width=400, height=400, tools=TOOLS, x_range=(0,100), y_range=(0,100))
right.circle("x", "y2", source=source, size=10, fill_color="black", line_color=None)
p = gridplot([[left, right]])
show(p)
答案 0 :(得分:2)
这两个图不是“通过x坐标链接”:它只是看起来那样,因为你的点碰巧在两个图中都有相同的x坐标。如果您为每个数据点分配两个不同的x坐标(x1
和x2
),您会看到它们实际上是通过数据表中的行号链接的(您不是需要手动分配id
):
import numpy as np
from bokeh.plotting import figure,output_notebook, show, gridplot
from bokeh.models import ColumnDataSource
output_notebook()
N = 100
max = 100
x1 = [0,10,20,30]
x2 = [50,20,10,70]
y1 = [10,10, 20, 20]
y2 = [30,0,30,0]
source = ColumnDataSource(data=dict(x1=x1, x2=x2, y1=y1, y2=y2))
TOOLS="box_select"
left = figure(width=400, height=400, tools=TOOLS, x_range=(0,100), y_range=(0,100))
left.circle("x1", "y1", source=source, size=10, fill_color="black", line_color=None)
right = figure(width=400, height=400, tools=TOOLS, x_range=(0,100), y_range=(0,100))
right.circle("x2", "y2", source=source, size=10, fill_color="black", line_color=None)
p = gridplot([[left, right]])
show(p)