Subplots
Learn what subplots are and how to use them with figure types you have already learned.
Our data
Here we will use two datasets: the nike
variable stores a dataset with the high prices and adjusted closing prices for Nike stock, and the dataset nike_log_returns
stores the logarithmic returns of the high price and adjusted closing price columns. It is not important that we understand how logarithmic returns work— we just need to understand that it is another way we can interpret our financial time series data.
Let’s print the first few rows to see what the data looks like:
# Import librariesimport pandas as pdimport numpy as np# Import datasetsnike = pd.read_csv('/usr/local/csvfiles/nike.csv')print(nike.head())
Let’s also look at the second dataset:
# Import librariesimport pandas as pdimport numpy as np# Import datasetsnike_log_returns = pd.read_csv('/usr/local/csvfiles/nike_log_returns.csv')print(nike_log_returns.head())
Column-aligned subplots
To make subplots in Plotly, we first need to import the necessary functionality to do so:
from plotly.subplots import make_subplots
Inside make_subplots
, we can pass in rows
and columns
as keyword arguments, in which we can create a grid of plots that will allow us to explore our datasets from many different angles.
What we will now do is create a grid with a single row and two columns, doing so with the following code:
fig =
...