Skip to content
Advertisement

Use Bokeh RadioGroup to plot selected subset of Pandas DataFrame within Jupyter

Goal

Plot subsets of rows in a Pandas DataFrame by selecting a specific value of a column.

Ideally plot it in jupyter notebook.

What I did

I have minimal knowledge of Javascript, so I have managed to plot by running Bokeh server with everything written in Python.

However, I couldn’t make it in Jupyter notebook with a Javascript callback. My way of doing it sounds a bit stupid: splitting the DataFrame into subsets by values of a column and putting them into a dict, then I can select a subset by the active selection from a RadioGroup.

This is my code example:

JavaScript

The code runs but by selecting a certain month, the plot isn’t updating. This is probably due to the bad handling of the JS callback, any ideas for fixing this? Thanks a lot for your help!

Advertisement

Answer

Issues with your code:

  • In p.line, you’re using the index column. But when you call pd.DataFrame.to_dict(), the column is not there. Can be fixed by adding yet another .reset_index() before .to_dict()
  • to_dict() returns data in the form of a dict of dicts, but ColumnDataSource needs a dict of lists. Replace the call withto_dict('list')
  • src.change.omit() – a typo here, it should be emit. But since you’re replacing the whole data attribute instead of just changing some of the data, you can simply remove the line altogether
Advertisement