【问题标题】:Bokeh: disable Auto-ranging while using Edit Tools散景:使用编辑工具时禁用自动范围
【发布时间】:2019-11-21 19:55:19
【问题描述】:

我在我的散景图中加入了PolyDrawTool 以让用户圈出点。当用户在绘图边缘附近绘制一条线时,该工具会扩展通常会弄乱形状的轴。当用户在绘图上绘图时,有没有办法冻结轴?

我正在使用散景 1.3.4

MRE:

import numpy as np
import pandas as pd
import string

from bokeh.io import show
from bokeh.plotting import figure
from bokeh.models import ColumnDataSource, LabelSet
from bokeh.models import PolyDrawTool, MultiLine


def prepare_plot():
    embedding_df = pd.DataFrame(np.random.random((100, 2)), columns=['x', 'y'])
    embedding_df['word'] = embedding_df.apply(lambda x: ''.join(np.random.choice(list(string.ascii_lowercase), (8,))), axis=1)

    # Plot preparation configuration Data source
    source = ColumnDataSource(ColumnDataSource.from_df(embedding_df))
    labels = LabelSet(x="x", y="y", text="word", y_offset=-10,x_offset = 5,
                      text_font_size="10pt", text_color="#555555",
                      source=source, text_align='center')
    plot = figure(plot_width=1000, plot_height=500, active_scroll="wheel_zoom",
                      tools='pan, box_select, wheel_zoom, save, reset')

    # Configure free-hand draw
    draw_source = ColumnDataSource(data={'xs': [], 'ys': [], 'color': []})
    renderer = plot.multi_line('xs', 'ys', line_width=5, alpha=0.4, color='color', source=draw_source)
    renderer.selection_glyph = MultiLine(line_color='color', line_width=5, line_alpha=0.8)
    draw_tool = PolyDrawTool(renderers=[renderer], empty_value='red')
    plot.add_tools(draw_tool)

    # Add the data and labels to plot
    plot.circle("x", "y", size=0, source=source, line_color="black", fill_alpha=0.8)
    plot.add_layout(labels)
    return plot


if __name__ == '__main__':
    plot = prepare_plot()
    show(plot)

【问题讨论】:

  • 是的,我可以尝试制作 MRE。我才意识到我的措辞可能很糟糕。轴在定位线时会扩展,但如果线在原始边界内结束,则会回弹。仅当绘制的线最终超出原始边界时,更改才是永久性的。

标签: python bokeh


【解决方案1】:

PolyDrawTool 实际上更新了ColumnDataSource 以驱动绘制用户指示的字形。您看到的行为是这一事实的自然结果,结合 Bokeh 的默认自动范围 DataRange1d(默认情况下,在计算自动边界时也会考虑每个字形)。所以,你有两个选择:

  • 根本不要使用DataRange1d,例如您可以在调用figure 时提供固定的轴边界:

    p = figure(..., x_range=(0,10), y_range=(-20, 20)
    

    或者你可以在事后设置它们:

    p.x_range = Range1d(0, 10)
    p.y_range = Range1d(-20, 20)
    

    当然,通过这种方法,您将不再获得任何自动量程;您需要将轴范围设置为您想要的开始/结束。

  • 通过显式设置renderers 属性使DataRange1d 更具选择性:

    r = p.circle(...)
    p.x_range.renderers = [r] 
    p.y_range.renderers = [r] 
    

    现在DataRange 模型在计算自动范围的开始/结束时将只考虑圆形渲染器。

【讨论】:

    猜你喜欢
    • 2018-10-10
    • 1970-01-01
    • 1970-01-01
    • 2019-02-25
    • 2017-09-07
    • 2018-12-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多