Interactive Slider using Bokeh
问题 I'm trying to use a bokeh interactive slider to modify the contents of a plot, similar the example here. I have a two nested lists x and y . I simply want the slider to change the index of the lists to plot. i.e. If the slider index = 0, then plot x[0] vs y[0] , if the slider index is 1, plot x[1] vs y[1] , etc... The documentation example computes the new data on the fly, which is not feasible for the data that I need to work with. When I run the code below, nothing shows up in the plot... I