Tutorial by Examples

Bokeh's Docs on Installation Bokeh runs on Python it has the following dependencies; NumPy, Jinja2, Six, Requests, Tornado >= 4.0, PyYaml, DateUtil If you plan on installing with Python 2.7 you will also need future. All of those come with the Anaconda Python Distribution. Which you can downl...
Here is a simple example of how to use Bokeh in Jupyter Notebook: import numpy as np from bokeh.plotting import figure # Make Bokeh Push push output to Jupyter Notebook. from bokeh.io import push_notebook, show, output_notebook from bokeh.resources import INLINE output_notebook(resources=INLIN...
To use bokeh you need to launch a bokeh server and connect to it using a browser. We will use this example script (hello_world.py): from bokeh.models import ColumnDataSource from bokeh.plotting import figure from bokeh.io import curdoc def modify_doc(doc): """Add a plotted ...

Page 1 of 1