Python Plotly Tutorial

29/12/2020
Plotly is an analytics company known for developing real-time analytics, statistics and graphing tools for web-based application and standalone Python scripts. In this lesson, we will look at basic examples with Plotly and build up simple and intuitive time-series data graphs which will be 100% interactive in nature and yet easy to design. These graphs can be used in presentations as they are fully interactive and ready to play with.

There is also an option to save a graph design offline so they can be exported easily. There are many other features which make the usage of the library very easy:

  • Save graphs for offline usage as vector graphics which are highly optimised for print and publication purposes
  • The charts exported is in the JSON format and not the image format. This JSON can be loaded into other visualisation tools like Tableau easily or manipulated with Python or R
  • As the graphs exported are JSON in nature, it is practically very easy to embed these charts into a web application
  • Plotly is a good alternative for Matplotlib for visualisation

To start using the Plotly package, we need to register for an account on the website mentioned previously to obtain a valid username and API key with which we can start using its functionalities. Fortunately, a free-pricing plan is available for Plotly with which we get enough features to make production-grade charts.

Installing Plotly

Just a note before starting, you can use a virtual environment for this lesson which we can be made with the following command:

python -m virtualenv plotly
source numpy/bin/activate

Once the virtual environment is active, you can install Plotly library within the virtual env so that examples we create next can be executed:

pip install plotly

We will make use of Anaconda and Jupyter in this lesson. If you want to install it on your machine, look at the lesson which describes “How to Install Anaconda Python on Ubuntu 18.04 LTS” and share your feedback if you face any issues. To install Plotly with Anaconda, use the following command in the terminal from Anaconda:

conda install -c plotly plotly

We see something like this when we execute the above command:

Once all of the packages needed are installed and done, we can get started with using the Plotly library with the following import statement:

import plotly

Once you have made an account on Plotly, you will need two things – username of the account and an API key. There can be only one API key belonging to each account. So keep it somewhere safe as if you lose it, you’ll have to regenerate the key and all old applications using the old key will stop working.

In all of the Python programs you write, mention the credentials as follows to start working with Plotly:

plotly.tools.set_credentials_file(username = ‘username’, api_key = ‘your-api-key’)

Let’s get started with this library now.

Getting Started with Plotly

We will make use of following imports in our program:

import pandas as pd
import numpy as np
import scipy as sp
import plotly.plotly as py

We make use of:

  • Pandas for reading CSV files effectively
  • NumPy for simple tabular operations
  • Scipy for scientific calculations
  • Plotly for visualisation

For some of the examples, we will make use of Plotly’s own datasets available on Github. Finally, please note that you can enable offline mode for Plotly as well when you need to run Plotly scripts without a network connection:

import pandas as pd
import numpy as np
import scipy as sp
import plotly
plotly.offline.init_notebook_mode(connected=True)
import plotly.offline as py

You can run the following statement to test the Plotly installation:

print(plotly.__version__)

We see something like this when we execute the above command:

We will finally download the dataset with Pandas and visualise it as a table:

import plotly.figure_factory as ff
df = pd.read_csv("https://raw.githubusercontent.com/plotly/datasets/master/school_
earnings.csv"
)
table = ff.create_table(df)
py.iplot(table, filename=‘table’)

We see something like this when we execute the above command:

Now, let us construct a Bar Graph to visualise the data:

import plotly.graph_objs as go
data = [go.Bar(x=df.School, y=df.Women)]
py.iplot(data, filename=‘women-bar’)

We see something like this when we execute the above code snippet:

When you see above chart with Jupyter notebook, you will be presented with various options of Zoom in/out over a particular section of the chart, Box & Lasso select and much more.

Grouped Bar Charts

Multiple bar charts can be grouped together for comparison purposes very easily with Plotly. Let’s make use of same dataset for this and show variation of men and women presence in universities:

women = go.Bar(x=df.School, y=df.Women)
men = go.Bar(x=df.School, y=df.Men)

data = [men, women]
layout = go.Layout(barmode = "group")
fig = go.Figure(data = data, layout = layout)
py.iplot(fig)

We see something like this when we execute the above code snippet:

Although this looks good, the labels on top right corner are not, correct! Let’s correct them:

women = go.Bar(x=df.School, y=df.Women, name = "Women")
men = go.Bar(x=df.School, y=df.Men, name = "Men")

The graph looks much more descriptive now:

Let’s try changing the barmode:

layout = go.Layout(barmode = "relative")
fig = go.Figure(data = data, layout = layout)
py.iplot(fig)

We see something like this when we execute the above code snippet:

Pie Charts with Plotly

Now, we will try to construct a Pie Chart with Plotly which establishes a basic difference between the percentage of women across all the universities. The name of the universities will be the labels and the actual numbers will be used to calculate the percentage of the whole. Here is the code snippet for the same:

trace = go.Pie(labels = df.School, values = df.Women)
py.iplot([trace], filename=‘pie’)

We see something like this when we execute the above code snippet:

The good thing is that Plotly comes with many features of zooming in and out and many other tools to interact with the constructed chart.

Time Series data visualisation with Plotly

Visualising time-series data is one of the most important task that comes across when you’re a data analyst or a data engineer.

In this example, we will make use of a separate dataset in the same GitHub repository as the earlier data didn’t involved any time-stamped data specifically. Like here, we will plot variation of Apple’s market stock over time:

financial = pd.read_csv("https://raw.githubusercontent.com/plotly/datasets/master/
finance-charts-apple.csv"
)
data = [go.Scatter(x=financial.Date, y=financial[‘AAPL.Close’])]
py.iplot(data)

We see something like this when we execute the above code snippet:

Once you hover your mouse over the graph variation line, you can specific point details:

We can use zoom in and out buttons to see data specific to each week as well.

OHLC Chart

An OHLC (Open High Low close) chart is used to show variation of an entity across a time span. This is easy to construct with PyPlot:

from datetime import datetime

open_data = [33.0, 35.3, 33.5, 33.0, 34.1]
high_data = [33.1, 36.3, 33.6, 33.2, 34.8]
low_data = [32.7, 32.7, 32.8, 32.6, 32.8]
close_data = [33.0, 32.9, 33.3, 33.1, 33.1]

dates = [datetime(year=2013, month=10, day=10),
datetime(year=2013, month=11, day=10),
datetime(year=2013, month=12, day=10),
datetime(year=2014, month=1, day=10),
datetime(year=2014, month=2, day=10)]

trace = go.Ohlc(x=dates,
open=open_data,
high=high_data,
low=low_data,
close=close_data)
data = [trace]

py.iplot(data)

Here, we have provided some sample data points which can be inferred as follows:

  • The open data describes the stock rate when market opened
  • The high data describes the highest stock rate achieved throughout a given period of time
  • The low data describes the lowest stock rate achieved throughout a given period of time
  • The close data describes the closing stock rate when a given time interval was over

Now, let’s run the code snippet we provided above. We see something like this when we execute the above code snippet:

This is excellent comparison of how to establish time comparisons of an entity with its own and comparing it to its high and low achievements.

Conclusion

In this lesson, we looked at another visualisation library, Plotly which is an excellent alternative to Matplotlib in production grade applications which are exposed as web applications, Plotly is a very dynamic and feature-rich library to use for production purposes, so this is definitely a skill we need to have under our belt.

Find all of the source code used in this lesson on Github. Please share your feedback on the lesson on Twitter with @sbmaggarwal and @LinuxHint.

ONET IDC thành lập vào năm 2012, là công ty chuyên nghiệp tại Việt Nam trong lĩnh vực cung cấp dịch vụ Hosting, VPS, máy chủ vật lý, dịch vụ Firewall Anti DDoS, SSL… Với 10 năm xây dựng và phát triển, ứng dụng nhiều công nghệ hiện đại, ONET IDC đã giúp hàng ngàn khách hàng tin tưởng lựa chọn, mang lại sự ổn định tuyệt đối cho website của khách hàng để thúc đẩy việc kinh doanh đạt được hiệu quả và thành công.
Bài viết liên quan

Install Anaconda Python on CentOS 7

Anaconda Python is a distribution of Python which provides many tools for data scientists. These tools are also Python...
28/12/2020

Top 10 Machine learning Libraries for Python

What do you want to create? The important question! You have come here to use Machine Learning(ML) . Have you considered...
29/12/2020

Best Cloud Based IDEs for Python

Development environments are increasingly moving in the cloud in part or full, allowing programmers to access and collaborate...
29/12/2020
Bài Viết

Bài Viết Mới Cập Nhật

SỰ KHÁC BIỆT GIỮA RESIDENTIAL PROXY VÀ PROXY DATACENTER
17/02/2024

Mua Proxy v6 US Private chạy PRE, Face, Insta, Gmail
07/01/2024

Mua shadowsocks và hướng dẫn sữ dụng trên window
05/01/2024

Tại sao Proxy Socks lại được ưa chuộng hơn Proxy HTTP?
04/01/2024

Mua thuê proxy v4 nuôi zalo chất lượng cao, kinh nghiệm tránh quét tài khoản zalo
02/01/2024