javascript - 如何在 Python 中更新 Bokeh 的 JavaScript 回调中的源?

标签 javascript python callback bokeh bokehjs

我正在适应this answer对于我的情况,我想要一个交互式的独立图表,其中 slider 选择要在条形图中绘制的数据列。 (独立至关重要,我无法运行 Bokeh 服务器,因此需要 JavaScript callbacks 。)

数据是一个浮点矩形,38 列,每列 100 行,所有列都有诸如 '40' 等字符串标签。(这就是 pandas .read_csv() 的工作原理) 默认处理标题中的数字。)以下是左上角的示例(3x3,加上行和列标签):

        # ,        40,        41,        42,
   1.00000,   1.00000,   0.99287,   0.98489,
   2.00000,   1.00000,   0.99348,   0.98626,
   3.00000,   1.00000,   0.99433,   0.98922,

下面的代码生成第一列的图表,但在移动 slider 时不会更新图表。

通过查看它,我怀疑问题出在 JavaScript 代码上,不过ColumnDataSource对我来说仍然有点神秘。 (虽然对应于链接答案的用例,但更简单的数字列标签到列中数字列表的字典不能作为 datasource_available 工作。)

datadf = pd.read_csv('male_survival_by_pctile.csv')
datadf.set_index('# ',inplace=True)
years = range(40,77)
data = {}
data_available = {}

for year in years:
    data[year] = {'top':datadf[str(year)],'x':range(1,101)}
data_available = ColumnDataSource.from_df(datadf)

from bokeh.core.properties import field
from bokeh.io import curdoc, output_notebook, show
from bokeh.layouts import layout, column
from bokeh.models import (ColumnDataSource, HoverTool, SingleIntervalTicker,
                          Slider, Button, Label, CustomJS)
from bokeh.plotting import figure

output_notebook()

source_visible = ColumnDataSource(data=dict(x=range(1,101),top=data_available[str(years[0])]))
source_available = ColumnDataSource(data=data_available)

plot = figure(output_backend="webgl")
plot.xaxis.ticker = SingleIntervalTicker(interval=.01)
plot.xaxis.axis_label = "Income percentile"
plot.yaxis.ticker = SingleIntervalTicker(interval=.05)
plot.yaxis.axis_label = "Survival rate"

label = Label(x=1.1, y=18, text=str(years[0]), text_font_size='70pt', text_color='#eeeeee')
plot.add_layout(label)

plot.vbar(top='top',x='x',width=1,source=source_visible)

slider = Slider(start=years[0], end=years[-1], value=years[0], step=1, title="Age")

slider.callback = CustomJS(
    args=dict(source_visible=source_visible,
              source_available=source_available), code="""
        var selected_function = cb_obj.get('value').toString();
        // Get the data from the data sources
        var data_visible = source_visible.get('data');
        var data_available = source_available.get('data');
        // Change bar height to the selected value
        data_visible.top = data_available[selected_function];
        // Update the plot
        source_visible.trigger('change');
    """)

layout = column(slider, plot)

show(layout)

最佳答案

正如您怀疑的那样,问题出在 CustomJS 代码中。有两件事需要修复。

  1. Bokeh 已弃用 get()set() 方法,并将其替换为 getv()setv ()。但是,访问或修改模型属性的首选方法是通过常用的 JavaScript 属性,例如 source_visible.data

  2. Bokeh 有 deprecated trigger('change') 并将其替换为 change.emit()

固定的CustomJS代码:

slider.callback = CustomJS(
    args=dict(source_visible=source_visible,
              source_available=source_available), code="""
        var selected_function = cb_obj.value.toString();
        // Get the data from the data sources
        var data_visible = source_visible.data;
        var data_available = source_available.data;
        // Change bar height to the selected value
        data_visible.top = data_available[selected_function];
        // Update the plot
        source_visible.change.emit();
    """)

JavaScript 错误和警告显示在浏览器的控制台中。 Here are instructions for opening the console in different browsers .

关于javascript - 如何在 Python 中更新 Bokeh 的 JavaScript 回调中的源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51234876/

相关文章:

内置服务器的python不加载css

android - Twitter OAuth 在 Android 中是如何工作的?

javascript - 如何使用 jquery 将 &lt;input type ="text"> 更改为 <tr>

javascript - 如何从 JScript 执行 VBScript 代码?

python - 意外的格式字符串行为

javascript - 使用回调或 promise 使异步代码像 nodejs 中的同步一样工作

c++ - 带参数的函数 vector

javascript - CSS/JavaScript : How do I hide the vertical scroll bar?

javascript - Chart.js 版本 2.5 工具提示水平对齐项目

python - 如何从多个元组中添加值?