I’m a scientist looking for ways to display timeseries data of various types all in one place. I find the make_subplots
function and fig.add_trace
method very useful, because it allows me to take multiple plots of different types (for example, go.Scatter
, go.Bar
, etc.) and plot them as separate graphs in different rows and columns. In this way, I can capture different aspects of data in each plot, and even use the shared_xaxes=True
option to enable the entire column to line up.
However, I often find myself wanting to create plots that are combinations of various plot types (e.g. Scatter and Bar plots). One use case would be where each plot describes a different piece of equipment, and each piece of equipment has a temperature as a function of time (implemented with Scatter), as well as a timeline of when a heater is turned on (implemented with Bar), which are to show up in the same graph “entity”. I know how to create these two plots as separate traces, which is fine, but I’d like to abstract this tandem graph object by promoting it to its own class (just like Bar or Scatter), such that I can add, remove, place, and customize it with the same workflow as I do with Scatter, Bar, and allies.
Here’s a very simple, schematic example showing my workflow:
import plotly.graph_objects as go
from plotly.subplots import make_subplots
# Create some example data
x = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]
y2 = [5, 6, 7, 3, 12]
y3 = [11, 10, 8, 4, 3]
# Setup raw figure
fig = make_subplots(rows=3, cols=1, shared_xaxes=True)
# Add traces for all three devices:
fig.add_trace(go.Scatter(x=x, y=y1, name="Device 1"),row=1,col=1)
fig.add_trace(go.Scatter(x=x, y=y2, name="Device 2"),row=2,col=1)
fig.add_trace(go.Scatter(x=x, y=y3, name="Device 3"),row=3,col=1)
# show the plot
fig.show()
What I’d like to be able to do is make my own class like go.Scatter that can handle something a bit juicier, which would know how to make my bundled graph type – complete with both its scatter and timeline data. It would look something like this:
import plotly.graph_objects as go
from plotly.subplots import make_subplots
# Create some example data
x = [1, 2, 3, 4, 5]
y_temperature_1 = [2, 4, 6, 8, 10]
y_bar_timeline_1 = <some bar data here>
y_temperature_2 = [5, 6, 7, 3, 12]
y_bar_timeline_2 = <some more bar data here>
y_temperature_3 = [11, 10, 8, 4, 3]
y_bar_timeline_3 = <even more bar data here>
# Setup Raw Figure
fig = make_subplots(rows=3, cols=1, shared_xaxes=True)
# Add traces for all three devices:
fig.add_trace(go.ScatterAndTimeline(x=x, y_temperature=y_temperature_1, y_bar_timeline=y_bar_timeline_1, name="Device 1"), row=1, col=1)
fig.add_trace(go.ScatterAndTimeline(x=x, y_temperature=y_temperature_2, y_bar_timeline=y_bar_timeline_2, name="Device 2"), row=2, col=1)
fig.add_trace(go.ScatterAndTimeline(x=x, y_temperature=y_temperature_3, y_bar_timeline=y_bar_timeline_3, name="Device 3"), row=3, col=1)
# show the plot
fig.show()
Here is an example of what I’m expecting the result to look like:
Are there any plotly wizards that could help me find a way to achieve what I’m looking for here?