Questions tagged [pandas-bokeh]

This tag should be added when `pandas_bokeh` library functions are used in the code. It uses Bokeh as plotting backend but has its own high-level API.

Pandas Bokeh provides a Bokeh plotting backend for Pandas and GeoPandas, similar to the already existing Visualization feature of Pandas. Importing the library adds a complementary plotting method plot_bokeh() on DataFrames and Series.

For more information and examples have a look at the Github Repository.

80 questions
0
votes
1 answer

How to add tooltip in pandas-bokeh area chart?

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 should be. Line Chart How can i make the tooltip…
Aldwin
  • 3
  • 1
0
votes
1 answer

How to change tick label in pandas-bokeh plot?

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( > kind='bar', > x='year', > …
Aldwin
  • 3
  • 1
0
votes
1 answer

How to show values in my pandas_bokeh chart legend?

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 chart using pandas_bokeh library, but I am having…
0
votes
0 answers

Update python bokeh layout using bokeh server?

What I want to do: I made a dynamic map using bokeh, pandas and geopandas. The data to be displayed is loaded from a table, then mapped to a country per year. The year to be displayed is determined by a bokeh slider. You can also hover over a…
asd789
  • 1
  • 2
0
votes
1 answer

Python-Bokeh application:Unable to export updated data from Webapp to local system by clicking on Bokeh Button widget

I am currently working on creating a Python-Bokeh based webapp Application running on server.In this application,user can preview the data from a pandas dataframe(shown using BOKEH DATATABLE) and can modify the data as per business needs. After…
Ravi
  • 3
  • 2
0
votes
0 answers

Plotly or Bokeh Offline - Update chart based on search box

Just theoretical question because i couldn't find anything on internet. I would like to create plotly or bokeh (wherever is possible) offline interactive chart where Search Box will be available and chart will be updated by typing proper text,…
Drac0
  • 101
  • 1
  • 2
  • 12
0
votes
1 answer

Bokeh showing empty diagramm

Hey guys so I have the problem that when I try to run my Code that my created diagram is empty. So I dont see my temperature and my time date. If it helps here is my database: id hum temp time date 1 59 …
Simon
  • 77
  • 1
  • 7
0
votes
1 answer

Python Bokeh plot static secondary y axis

I'm just trying to use the candlestick example and adding a volume bar chart. So far so good. I want to have a static range on my secondary y axis, so that all zooming only happens on the primary axis. # Candlestick price chart inc = df.close >=…
Dennis
  • 31
  • 1
  • 3
0
votes
1 answer

update datatable on bokeh barchart tap

I have made a bokeh bar chart and a datatable from a pandas dataframe display next to eachother on a webpage using django. I want to click on the bar chart and change the displayed data table rows based on the title of the bar chart. I have put an…
user1365234
  • 315
  • 1
  • 5
  • 16
0
votes
1 answer

slider.value values not getting updated using ColumnDataSource(Dataframe).data

I have been working on COVID19 analysis for a dashboard and am using a JSON data source. I have converted the json to dataframe. I am working on plotting bar chart for "Days to reach deaths" over a "States" x-axis (categorical values). I am trying…
0
votes
1 answer

Not able to update the plot on selection of a value of Select widget of Bokeh Library

I am working on COVID19 analysis and am using a JSON data source. I have converted the json to dataframe. I am working on plotting a daily case, daily death and daily recovered bar chart over a datetime x-axis for each state and the state can be…
0
votes
1 answer

Bokeh update map tooltip using select or slider

I am trying to update a worldmap tooltip using a slicer or dropdown select. I got following question which sorted the most of the stuff for a Bokeh Slider custom JS callback import pandas as pd import random from datetime import timedelta df =…
Manish Singla
  • 381
  • 1
  • 4
  • 11
0
votes
1 answer

Up to date Bokeh grouped bar chart example?

I am new to both Bokeh and Pandas and I am trying to generate a grouped bar chart from some query results. My data looks something like this Day Fruit Count ----------- -------- ------- 2020-01-01 Apple 19 2020-01-01 Orange …
Colin Andrews
  • 191
  • 11
0
votes
1 answer

vbar_stack bokeh update from dropdown

I'm trying to upadte a vbar_stack plot in bokeh everytime I chosse a different category from a dropdown, but as legend_label is inside the vbar_plot, I can't update it in the update function. I'll add the code to be more clear def…
Jose Ruiz
  • 77
  • 2
  • 13
0
votes
1 answer

Bokeh Server plot not updating as wanted, also it keeps shifting and axis information vanishes

I want the plot to update, once I click the "refresh button", with the new data. But the old data stays in the plot, also it keeps shifting down right and the ticks vanish. At the beginning, the plot looks what I expected (except the X axis…
CS101
  • 444
  • 1
  • 6
  • 21