Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
49 views

So I am working on a dashboard in which there are bunch of KPIs and Graphs. The dashboard have filters that when applied, filter whole dashboard. Before I was totally reloading the page and every ...
Balaaj Raza's user avatar
1 vote
1 answer
109 views

I am currently working on a data visualisation project. I need to create a stacked bar chart using Bokeh. The data is sourced from an Excel file that is updated regularly and contains multiple inputs ...
Silberspecht's user avatar
0 votes
1 answer
72 views

I have a csv file, and is trying to make the year appear on the x-axis, but the year is unable to appear. from bokeh.plotting import figure from bokeh.io import output_file, output_notebook, show from ...
unleashed's user avatar
1 vote
2 answers
165 views

Suppose I have the following bar plot from the documentation: from bokeh.io import show, output_notebook from bokeh.plotting import figure output_notebook() Here is a list of categorical values (or ...
mang's user avatar
  • 11
1 vote
1 answer
428 views

I'm trying to achieve the following o/p from bokeh which is deprecated now. In the new structure, I need to layer everything like working in HTML. Is there any simplified example like this bokeh pie ...
ArulRulzz's user avatar
0 votes
1 answer
1k views

I am a begineer in plotting graphs in bokeh. So please forgive me if this is a stupid question. I am trying to plot a line grpah, where my data is in a dataframe and I have provided the x and y axis ...
noob's user avatar
  • 13
0 votes
1 answer
41 views

I have tried the below code to generate bokeh graphs for each of the element when the their respective check boxes are ticked. data is a df with columns like 'id', 'data_point', 'max', 'min' I am ...
noob's user avatar
  • 13
0 votes
1 answer
268 views

I have two data sources with the same keys. Source 1 has key/value pairs with unique keys to be plotted. Source 2 has the same keys as source 1, but each with potentially multiple values. Is it ...
Will's user avatar
  • 1
7 votes
5 answers
13k views

I am trying to use pandas_bokeh to create a line graph with a pandas dataframe I call bucketed_df import pandas_bokeh pandas_bokeh.output_notebook() bucketed_df.plot_bokeh(kind='line') for some ...
Daniel Almeida's user avatar
0 votes
1 answer
181 views

I run the following code, displaying google map via bokeh with markers on the map: gmap_options = GMapOptions(lat=lat, lng=lng, map_type=map_type, zoom=zoom) p = gmap(...
gtomer's user avatar
  • 6,614
2 votes
0 answers
185 views

I am using bokeh to display pins on a map and want when hoovering to display a JPG. The code below works well when the image is from the internet (i.e. with a URL) but how can I make it work if the ...
gtomer's user avatar
  • 6,614
0 votes
1 answer
131 views

I was wondering if there was a way to color a line to follow the curve from the user specified input. Example is shown below. The user wants to color a line that starts from x = 11, to x = 14 (see ...
zape's user avatar
  • 115
0 votes
0 answers
80 views

So I'm trying to learn Bokeh, using Jupyter notebooks. When I use this code it works great: '''' X=tesla['Date'] Y=tesla['Close'] output_file('time.html') #output file, have to import fig=figure(...
Alejandro Diaz's user avatar
0 votes
0 answers
491 views

I want two plots that stretch to fill up the entire window, like this: # to run this, use: bokeh serve --show test.py from bokeh.layouts import column from bokeh.plotting import figure, curdoc ...
Jase's user avatar
  • 1,105
0 votes
1 answer
283 views

Pretty new to Bokeh. Plotting a barplot (after importing pandas_bokey) works well. But... I want to change the hoover tooltips. Question: should hoover tooltip work with a pandas df in Bokeh or must ...
Janneman's user avatar
  • 351
0 votes
1 answer
134 views

In regular Bokeh there is a nice feature of linking axes from different subplots in a grid which e.g. is very useful for zooming on multiple graphs simultaneously. But this doesn't seem to work in the ...
Ebbe Vestergaard's user avatar
0 votes
1 answer
247 views

How can I let bokeh draw a colored border (frame) around the graph tile? Some graph tiles have to be graphically highlighted against the other graphs and the customer therefore wants to have a colored ...
s950mpc2000's user avatar
0 votes
0 answers
419 views

In Jupyter Notebooks I read in a dataframe and create several plots with Pandas / Bokeh. While creating one of the latter I get an error. Search for similar problems said, that there might be ...
Swawa's user avatar
  • 273
0 votes
2 answers
137 views

From the following files I want to do a map plot by using folium: Polygons file: https://drive.google.com/file/d/1uhj7OyHktPseR_CtRD0vPfq8HziHA4RK/view? Postcode variable level: https://drive.google....
PeCaDe's user avatar
  • 478
0 votes
1 answer
115 views

.plot_bokeh(kind='bar',x='Weather',stacked=True,***xticks=?????????***) File ~\Anaconda3\lib\site-packages\pandas_bokeh\plot.py:658, in plot(df_in, x, y, kind, figsize, use_index, title, legend, logx,...
curiouscoder's user avatar
0 votes
1 answer
2k views

as a very simple example when I want to export a visualisation to a html in bokeh i'd do something like this: #importing bokeh from bokeh.plotting import figure from bokeh.io import output_file, show ...
curiouscoder's user avatar
0 votes
1 answer
940 views

when trying to enter two datasource this error popped up. RuntimeError: Models must be owned by only a single document, StringFormatter(id='1266', ...) is already in a doc df_2 = pd.DataFrame({ '...
Prem mumma reddy's user avatar
1 vote
0 answers
248 views

I'm trying to plot a graph using Bokeh. I did it using matplotlib but I can't figure out how I can plot 2D array using Bokeh. This is my code for plotting with matplotlib: [row, col] = point_data....
Abirdh's user avatar
  • 11
1 vote
1 answer
2k views

Does someone knows how in python(matplotlib, pandas_bokeh,...) plot frequency scatter plot with error bars, if it is called like that? What I want is on y axis to have number of events(counts, instead ...
Falco Peregrinus's user avatar
0 votes
1 answer
421 views

I want a CheckboxGroup to represent different columns of a dataframe. The idea is for the user to be able to add multiple column values if they select multiple columns and interactively display the ...
Brain_overflowed's user avatar
0 votes
1 answer
229 views

According to https://stackoverflow.com/a/48692943/1759063 it is possible to aggregate the occurence on values per time unit like that: +---------+----------+------------------------+------------+------...
Eljah's user avatar
  • 5,433
0 votes
1 answer
391 views

For example, the following displays two plots. How can I draw them in a single plot? import pandas as pd import pandas_bokeh pd.set_option('plotting.backend', 'pandas_bokeh') pandas_bokeh....
Kibeom Kim's user avatar
0 votes
1 answer
143 views

I'm trying to create a line plot of a ~30.000 entries long array using pandas_bokeh in jupyter-notebook but constant values seem to be invisible when . When I further I can see that the data points ...
NoMonkey's user avatar
2 votes
0 answers
135 views

I am developing a web application using bokeh. My requirement is to open pop up window on button click. The pop up window should display a data table widget. Secondly, This pop up window is draggable. ...
bhawna1 Bhasin's user avatar
0 votes
1 answer
851 views

I am trying to incorporate some bokeh widgets with pandas_bokeh plots within a dashboard in order to interactively update them through filtering. However, when I launch the dashboard, I get a blank ...
metaltoaster's user avatar
0 votes
1 answer
515 views

I'm new to Bokeh so apologies if I get the terminology wrong. I have a simple dashboard and I'm trying to add a chart using tabulator to the page docs The basic setup is as follows from bokeh.models ...
apoursh's user avatar
  • 27
0 votes
1 answer
530 views

I'm new with bokeh plots and I'm trying plot a map with a slider, but it's not updating. I've tried many ways, but it still not updating the plot. I'm using bokeh server and non geographic plots I've ...
Gabriel Lima's user avatar
0 votes
0 answers
176 views

I am trying to plot summary stats from a pandas dataframe using bokeh visualisation. My aim is to use a slider to filter the data to be plotted and to update the plot accordingly. However, when I ...
metaltoaster's user avatar
0 votes
1 answer
471 views

I am new to bokehJS and I need to update the plot based on dropdown values. For initial load am using below code to add arrow in layout of the plot. But, whenever I change the value on dropdown plot ...
Pritam's user avatar
  • 1,410
0 votes
1 answer
116 views

I'm working in a Jupyter Notebook with pandas and pandas-bokeh. I can create a chart no problem, but when I want to add an element (like a Span), I can't figure out how to avoid getting a second copy ...
sql_knievel's user avatar
  • 1,461
0 votes
1 answer
571 views

I'm doing a Bokeh application in which I have an input table, some calculations are performed on it and it produces a new table. I'm trying to plot a heatmap of this new table, so I have to create a ...
andrespm's user avatar
3 votes
1 answer
549 views

I am trying to update Span using ColumnDataSource, but the information is not being passed onto the source. Span unfortunately does not have a paremeter "source", so is there a better way? I ...
aajw98's user avatar
  • 51
1 vote
1 answer
432 views

Cross-post on Bokeh forums: https://discourse.bokeh.org/t/display-json-item-serialized-json-in-jupyter-notebook/7245/3 I've serialized my Bokeh plot to json using bokeh.embed.json_item, as described ...
Abhishek Divekar's user avatar
0 votes
1 answer
464 views

I have an issue with updating legend_groups in bokeh: My data is based on four columns: x-values, y-values, categorization, geography. I created a scatterplot in Bokeh with all scatter points coming ...
maxpower-xd's user avatar
0 votes
1 answer
4k views

I have plotted the candlestick using bokeh. Now i want to plot the volume candles in the same chart? How do I achieve that. I am reading the data from csv which has open,high,low,close and volume.
monucool's user avatar
  • 442
1 vote
1 answer
2k views

I am new to Stackoverflow and I am trying to build a Candle stick Chart using Bokeh from python. I understand that there is a sample code in the Bokeh doc. I have tried to use the sample code and ...
Omerge's user avatar
  • 89
0 votes
1 answer
2k views

Is there a possibility to achive plots like sample1 with Bokeh? Sample1 was created with Matplotlib. My goal is to plot multiple short lines which are separated from each other on the map. But the ...
Pm740's user avatar
  • 423
2 votes
1 answer
995 views

I need ur help. I try to plot a route on a map. The dataset consists of lon and lat. I want to include only a part of the route with a interactive solution like a RangeSlider. For example only the 2th ...
Pm740's user avatar
  • 423
1 vote
1 answer
198 views

I am using bokeh server to plot the result from my streaming frames of a video. I see Bokeh provide add_periodic_callback as an auto-update on the server, but I don't know how to pause it. Any ...
dtlam26's user avatar
  • 1,630
0 votes
1 answer
632 views

I am trying to plot a stacked bar chart using bokeh by following this segment of the documentation. but my data frame is a tad more complex. it looks like this: events count Name a ...
Devarshi Goswami's user avatar
0 votes
1 answer
460 views

I am using an SQLite database with Pandas and want to display the dynamic data using Bokeh (varea_stack) My dynamic data (df) structure looks like this: id date site numberOfSessions ......
Llewellyn Hattingh's user avatar
0 votes
1 answer
110 views

I tried to make an area chart with pandas-bokeh package using this code: import pandas as pd import numpy as np import pandas_bokeh df = pd.read_excel('D:/Coding Practice/data/data_corona_usa.xlsx') ...
Aldwin's user avatar
  • 3
0 votes
1 answer
299 views

I tried to make an area chart of cummulative corona virus cases in USA. But, there is no tooltip in the area chart. Area Chart If i change the area chart into line chart, the tooltip appear like it ...
Aldwin's user avatar
  • 3
0 votes
1 answer
515 views

I was trying to use pandas-bokeh library to make an interactive bar chart. Below is my dataframe that I want to plot. My dataframe After that,I plot it using this code > df4.plot_bokeh( > ...
Aldwin's user avatar
  • 3
0 votes
1 answer
158 views

I have a very small pandas DataFrame with two columns. status count 0 early 2 1 on_time 2 2 late 1 3 Incomplete 9 I am trying to create a pie ...
CINNI123486's user avatar