我想点击并拖动散点图散点图的点。任何想法如何做到这一点?
(编辑:这是我想要做的an example)
有关散点图的示例,下面的代码会生成在this page中间找到的散点图。
from bokeh.plotting import figure, output_file, show
# create a Figure object
p = figure(width=300, height=300, tools="pan,reset,save")
# add a Circle renderer to this figure
p.circle([1, 2.5, 3, 2], [2, 3, 1, 1.5], radius=0.3, alpha=0.5)
# specify how to output the plot(s)
output_file("foo.html")
# display the figure
show(p)
答案 0 :(得分:4)
多手势编辑工具只是最近添加的landing in version 0.12.14。您可以在“用户指南”的Edit Tools部分找到更多信息。
具体来说,为了能够按照OP中的描述移动点,请使用PointDrawTool
:
这是一个完整的例子,你可以运行它还有一个数据表,显示字形在移动时的更新坐标(你需要先在工具栏中激活工具,默认情况下它是关闭的):
from bokeh.plotting import figure, output_file, show, Column
from bokeh.models import DataTable, TableColumn, PointDrawTool, ColumnDataSource
output_file("tools_point_draw.html")
p = figure(x_range=(0, 10), y_range=(0, 10), tools=[],
title='Point Draw Tool')
p.background_fill_color = 'lightgrey'
source = ColumnDataSource({
'x': [1, 5, 9], 'y': [1, 5, 9], 'color': ['red', 'green', 'yellow']
})
renderer = p.scatter(x='x', y='y', source=source, color='color', size=10)
columns = [TableColumn(field="x", title="x"),
TableColumn(field="y", title="y"),
TableColumn(field='color', title='color')]
table = DataTable(source=source, columns=columns, editable=True, height=200)
draw_tool = PointDrawTool(renderers=[renderer], empty_value='black')
p.add_tools(draw_tool)
p.toolbar.active_tap = draw_tool
show(Column(p, table))