Skip to main content

All Questions

Tagged with
0 votes
1 answer
96 views

Bokeh: major_label_overrides doesn't get updated after CustomJS callback

I have written the code below to make a plot which can be updated when users apply some filters to the data. After selecting a value from the dropdown, the callback updates everything as expected, ...
Jason's user avatar
  • 1
0 votes
1 answer
58 views

How to add a hierarchical checkbox

I try to modify the code below, to have a "curves" checkbox that would deactivate / activate all the children (actually, the code I need will handle a lot of those, this is just an example): ...
Nic's user avatar
  • 3,475
0 votes
0 answers
129 views

bokeh saveTool default file name save as bokeh_plot

I am using bokeh library to create plot and I used the built in tool that come with bokeh , the **issue **is with the save tool when I click on it it save the image with default name "bokeh_plot&...
Ahmad's user avatar
  • 1
0 votes
0 answers
42 views

Modification of Bokeh plot to be able to select data points

I'm trying to get a list of the points that have been clicked on a graph, but i'm getting an empty list each time. The purpose of this is to allow my colleagues to click on interested data points on a ...
Nima Hojat's user avatar
0 votes
0 answers
50 views

Cannot copy date from Bokeh DataTable

I created a data table in bokeh that enables the user to filter the data (>40 columns and ~200 rows) by columns and rows. Here is the relevant portions of the code: import pandas as pd import os ...
Gingerhaze's user avatar
0 votes
1 answer
101 views

Bokeh CustomJS callback to change data table column visibility to True

I have a multi choice widget and when the user selects an option in the widget I want the DataTable to update and make the column selected visible. So essentially when the TableColumn.field= ...
Gingerhaze's user avatar
2 votes
1 answer
144 views

Attempting to use CustomJS in Bokeh to create interactive plot

I am trying to create an interactive plot with Bokeh on a Jupyter Notebook. I am trying to add interactivity to the plot, making it change in real time. The goal is to simply change the position of ...
Eternal Vigilance's user avatar
0 votes
0 answers
51 views

Python CustomJS filtering "Contains" instead of "Equals"

I'm creating a plot in Bokeh with a MultiChoice Widget to filter my data. I'm using this CustomJS statement to filter my data: enter var s1 = source.data; var selected = multi_choice.value; var ...
mg520's user avatar
  • 33
0 votes
1 answer
76 views

How to customise distance between tickers on the 2nd y-axis in BokehJS

So I'm trying to create a plot with BokehJS. This plot needs 3 axes (left, right, bottom): The plot looks like this As you can see, the right y-axis is pretty ugly, you can't read any data from ...
mrblue6's user avatar
  • 605
0 votes
1 answer
156 views

Bokeh and grid plot with arbitrary entries, MultiChoice & CustomJS for changing data

I am trying to represent data organized as a matrix of vector-valued timeseries. Given a vector timeseries placed at position (i,j) in the matrix, the scalar timeseries components are obtained by some ...
pfloutch's user avatar
0 votes
1 answer
429 views

Put a clickable URL in a Bokeh plot?

Is it possible to put a clickable URL in a Bokeh plot? I'm generating a lot of time series plots of online climate data, which are then browseable on a website. For each figure, I'd like to put a link ...
Michael Erb's user avatar
0 votes
1 answer
302 views

Bokeh & CustomJS: integrate HoverTool + CustomJS with TapTool

This is part of a series of questions related to this project: I have a dataset with 5000+ (x,y) coordinates divvied up into 1300+ groups. Using bokeh and its HoverTool function, I can plot the points ...
John Doe's user avatar
  • 125
0 votes
1 answer
379 views

Bokeh checkboxes with multiple dataframe columns

TLDR: I want to create an interactive visualization with Bokeh where I can toggle the appearance of individual bars in a bar plot based on the values of multiple categorical dataframe columns. The ...
Rory Majule's user avatar
0 votes
0 answers
223 views

Dynamic ROC curve plot

I'm trying to plot a ROC curve with a dinamic plot, where as I change the True Positives (TP), True Negatives (TN), False Positives (FP), and False Negatives (FN), the ROC curve changes accordingly. ...
Chris's user avatar
  • 2,051
0 votes
1 answer
503 views

How to update dataframe with bokeh callback?

I’m trying to recalculate the distance between two coordinates, one is given through 2 TextInput classes and the other is in a dataframe. I want to resolve this issue in order to select the data based ...
user19295781's user avatar

15 30 50 per page
1
2 3 4 5
17