import numpy import bokeh.plotting # Set the output to 'notebook' mode bokeh.plotting.output_notebook() # Simple numpy calculation of a sine wave x = numpy.arange(0.0, 100.0, 0.1) y = numpy.sin(x) p = bokeh.plotting.line(x,y, line_width=3.0) bokeh.plotting.show()