在没有交互的情况下获取Bokeh下拉值 [英] Get Bokeh dropdown value without interaction

查看:66
本文介绍了在没有交互的情况下获取Bokeh下拉值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

下面是Bokeh仪表板的一个小工作示例的代码.

Below is the code for a small working example of a Bokeh dashboard.

在第一个下拉菜单中进行选择时,第二个将动态更新,并且图表将使用新来源进行更新.这适用于选项A1/A2,因为数据数组的长度相同.

When you make a selection in the first dropdown menu, the second one is updated dynamically and the chart is updated with a new source. This works for options A1/A2 because the data arrays are the same length.

在第一个下拉菜单中选择选项B1后,第二个下拉菜单将更改为B2.

Once you select option B1 in the first dropdown, the second dropdown changes to B2.

但是源更新不会发生,因为您无法获得Yselector.value.

But the source update doesn't happen because you cant get the Yselector.value.

如何不使用Bokeh的on_change方法来检索Yselector.value并将其传递给类似source_selector的函数?

How can you retrieve the Yselector.value without using Bokeh's on_change method and pass it to a function like source_selector?

import numpy as np
import pandas as pd
from bokeh.models import ColumnDataSource
from bokeh.models.widgets import Tabs, Select
from bokeh.layouts import column, row, Spacer
from bokeh.io import curdoc
from bokeh.plotting import figure, curdoc, show

#Plotting points on initial chart.
df_AB = pd.DataFrame(np.random.randint(0,100,size=(500, 2)), columns=list('XY'), index=[str(i) for i in range(1,500+1)])
pointchart=figure(plot_width=800, plot_height=700, tools=['lasso_select','box_select','wheel_zoom'],title="Point scatter")
pointchart_source= ColumnDataSource(df_AB[["X","Y"]])
pointchart.circle("X","Y",source=pointchart_source)

#Dropdown X
selectoroptions=['','Series A1', 'Series A2','Series B1','Series B2']
Xselector = Select(title="Dropdown X:", value="", options=selectoroptions)

#Dropdown Y
selectoroptions=['','Series A1', 'Series A2','Series B1','Series B2']
Yselector = Select(title="Dropdown Y:", value="", options=selectoroptions)


#Will list multiple sources to feed the chart based on dropdown selection.
def source_selector(selection):
    if selection=='Series A1':
        newvalues= pd.Series(list(np.random.randint(100, size=500)),name="")
    elif selection=='Series A2': 
        newvalues= pd.Series(list(np.random.randint(200, size=500)),name="")
    elif selection=='Series B1': 
        newvalues= pd.Series(list(np.random.randint(20, size=20)),name="")    
    elif selection=='Series B2': 
        newvalues= pd.Series(list(np.random.randint(10, size=20)),name="")    
    return newvalues


#Once dropdown X seelction is made, the options of dropdown Y will dynamically change. 
#Data used for X axis is updated.
def X_switch_selection_and_source(attr, old, new):
    if new == '':
        pointchart_source.data = ColumnDataSource(df_AB[["X","Y"]]).data

    #Other dropdown changed dynamically
    elif new=='Series A1':
        Yselector.options=['Series A2'] 

    elif new=='Series A2':
        Yselector.options=['Series A1']

    elif new=='Series B1':
        Yselector.options=['Series B2']

    elif new=='Series B2':
        Yselector.options=['Series B1']  


    #Updating source based on this dropdown's selection/ X values. 
    new_x_values=source_selector(new)

    #Issue is right here. This line will only work if y is the same length as new x.
    new_y_values=list(pointchart_source.data["Y"])

    #If the lenghths are different I want to update the source for y by getting the y dropdown value. 
    if len(new_x_values)!= len(new_y_values):
        new_y_values=source_selector(Yselector.value) # Does not get the dynamically changed value in the Y dropdown.

    sourcedf=pd.DataFrame({"X":new_x_values,"Y":new_y_values})
    pointchart_source.data=  ColumnDataSource(sourcedf).data


Xselector.on_change("value", X_switch_selection_and_source)

#Show
layout=row(column(Xselector,Yselector, Spacer(width=400, height=500)),pointchart)
curdoc().add_root(layout)
!powershell -command {'bokeh serve --show Bokeh_dropdown_helped_v2.ipynb'}

我的目标是使用户能够从下拉列表中进行选择,而另一个下拉列表仅根据第一个选择显示适当的选择.

My goal is for the user to be able to make selections from the dropdowns and for the other dropdown to show only the appropriate selections based on the first selection.

用于轴的数据将根据选择进行更新.

The data used for the axis' will be updated based on the selections.

谢谢您的任何建议.

推荐答案

更改选择"小部件的值,而不是其选项.如果更改选项,则必须确保其值为选项之一.

Change the Select widget values instead of its options. If you change the options, you must make sure that its value is one of the options.

elif new=='Series A1':
    Yselector.value='Series A2' 

elif new=='Series A2':
    Yselector.value='Series A1'

elif new=='Series B1':
    Yselector.value='Series B2'

elif new=='Series B2':
    Yselector.value='Series B1' 

这篇关于在没有交互的情况下获取Bokeh下拉值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆