Top "Bokeh" questions

Bokeh is a library for interactive visualization (including streaming or large datasets) that targets modern web browsers for presentation, and high level languages such as Python, Scala, and R for use.

Pandas dataframe error: matplotlib.axes._subplots.AxesSubplot

import pandas as pd import matplotlib.pyplot as plt file = 'd:\\a\\pandas\\test.xlsx' data = pd.ExcelFile(file) df1 = …

python pandas matplotlib bokeh
Bokeh: AttributeError: 'DataFrame' object has no attribute 'tolist'

I am new to pandas and bokeh and I am trying to create a scatter plot from a pandas dataframe. …

python pandas bokeh
Plotting multiple lines with Bokeh and pandas

I would like to give a pandas dataframe to Bokeh to plot a line chart with multiple lines. The x-axis …

python pandas bokeh
X and Y axis labels for Bokeh figure

Does anyone know how to add x and y axis title/labels for a Bokeh figure? E.g. X-axis: time, …

python bokeh
How to change size of bokeh figure

I have read most of the documentation on bokeh and many of the examples. All of them contain the default …

python plot bokeh
How can I set the x-axis as datetimes on a bokeh plot?

I'm using bokeh with an ipython notebook. I want to plot a line graph in bokeh using a pandas DataFrame …

python pandas ipython-notebook bokeh
One chart with two different y axis ranges in Bokeh?

I would like a Bar chart with Quantity information on the left y-axis, and then overlay a Scatter/Line plot …

python bokeh
In Bokeh, how do I add tooltips to a Timeseries chart (hover tool)?

Is it possible to add Tooltips to a Timeseries chart? In the simplified code example below, I want to see …

python-3.x pandas tooltip bokeh timeserieschart
How can I accomplish `set_xlim` or `set_ylim` in Bokeh?

I create a figure in a function, e.g. import numpy from bokeh.plotting import figure, show, output_notebook output_…

python plot zoom bokeh axes
What to use instead of bokeh.charts

I am trying to run some code written by someone else, which contains the line from bokeh.charts import Bar …

python charts bokeh