【发布时间】:2019-11-13 07:53:39
【问题描述】:
我正在尝试根据另一个图中范围工具控制的日期范围过滤散点图 (p1) 的数据。
这将是此处已显示内容的变体:https://docs.bokeh.org/en/latest/docs/gallery/range_tool.html
这里是 MWE(不是真正为 p1 工作):
import numpy as np
from bokeh.io import show
from bokeh.layouts import column
from bokeh.models import ColumnDataSource, RangeTool
from bokeh.plotting import figure
from bokeh.sampledata.stocks import AAPL
dates = np.array(AAPL['date'], dtype=np.datetime64)
source = ColumnDataSource(data=dict(date=dates, close=AAPL['adj_close'], volume=AAPL['volume']))
####################### p
p = figure(plot_height=300, plot_width=800, tools="xpan", toolbar_location=None,
x_axis_type="datetime", x_axis_location="above",
background_fill_color="#efefef", x_range=(dates[1500], dates[2500]))
p.line('date', 'close', source=source)
p.yaxis.axis_label = 'Price'
################ p1
p1 = figure(plot_height=300, plot_width=800, tools="xpan", toolbar_location=None,
background_fill_color="#efefef")
p1.circle (x='close', y='volume', source=source)
##################### select (rangeslider)
select = figure(title="Drag the middle and edges of the selection box to change the range above",
plot_height=130, plot_width=800, y_range=p.y_range,
x_axis_type="datetime", y_axis_type=None,
tools="", toolbar_location=None, background_fill_color="#efefef")
range_tool = RangeTool(x_range=p.x_range)
range_tool.overlay.fill_color = "navy"
range_tool.overlay.fill_alpha = 0.2
select.line('date', 'close', source=source)
select.ygrid.grid_line_color = None
select.add_tools(range_tool)
select.toolbar.active_multi = range_tool
#####################
show(column(p,p1, select))
我想使用“RangeTool(x_range=p.x_range)”来控制 p1 源的过滤器。任何帮助将不胜感激
【问题讨论】:
标签: filter bokeh date-range interaction