Downloading the dataset

To download the sample datasets run the following command on the command line :

bokeh sampledata

Alternatively, we can also execute the following Python code :

import bokeh
bokeh.sampledata.download()

Python Bokeh – Visualizing Stock Data

Bokeh is a Python interactive data visualization. It renders its plots using HTML and JavaScript. It targets modern web browsers for presentation providing elegant, concise construction of novel graphics with high-performance interactivity.
Bokeh can be used to visualize stock market data. Visualization is be done using the plotting module. Here we will be using the sample stock datasets given to us by Bokeh.

Similar Reads

Downloading the dataset :

To download the sample datasets run the following command on the command line :...

Analyzing the dataset :

In the sample data provided by Bokeh, there are datasets of the stocks of the following companies :...

Visualizing the Stocks :

We will be plotting a line graph which will track the closing price of the stocks between the years 2000 and 2013 of all the 5 available companies....