6.1.2 Plotly Graph Objects
About Graph Objects
The plotly.graph_objects
module (typically imported as go
) contains an automatically-generated hierarchy of Python classes that represent non-leaf nodes in this figure schema.
Every non-leaf attribute of a figure is represented by an instance of a class in the plotly.graph_objects
hierarchy.
Functions in Plotly Express, which is the recommended entry-point into the plotly
library, are all built on top of graph objects, and all return instances of plotly.graph_objects.Figure
.
Advantage
Graph objects provide precise data validation. If you provide an invalid property name or an invalid property value as the key to a graph object, an exception will be raised with a helpful error message describing the problem.
Graph objects contain descriptions of each valid property as Python docstrings, with a full API reference available.
Properties of graph objects can be accessed using both dictionary-style key lookup (e.g.
fig["layout"]
) or class-style property access (e.g.fig.layout
).Graph objects support higher-level convenience functions and "magic underscores" for making updates to already constructed figures
When to use Graph Objects
1. Multiple plots in one figure
What to learn:
Add traces in figure
Distinguish scatter plot with "markers", "lines", and "default" mode
Set the color or line and size of scatters
Add legend name, axes name
2. Multiple plots in multiple figures
What to learn:
Make subplots
Deal with categorical data
Add text on figure
Change bar mode
Firstly, we create a subplots figure contains 1 row and 2 columns. Then we create a list named "fruit" and pass two different lists of value to it.
Although the chart looks good and clear, it is quite tricky, our audience will easily ignore ticks of Y-axis and have wrong impressions. Therefore, it's better to let the two plots share the Y-axis.
After changing the bar mode and sharing the Y-axis
3. Share X-axis Subplots
What to learn:
Make vertical subplots
Add subplot titles
4. Dual-axis plots
Even though some people believe that the dual-axis chart is a great way to easily illustrate the relationship between two different variables and illustrate a lot of information with limited space, I would suggest you not to, unless you had a thoughtful consideration. The Dual-axis chart is hard for most people to intuitively make right statements about two data series. In fact, you can just use two charts to deliver the same information.
Remember? Simple is better than complex.
What to learn:
Create a dual-axis plot
Add the main title
Change the primary and secondary Y-axis title
As we can see, the left Y-axis represents students' height, the right one means weight. It's hard to read the message without the legend.
5. Synchronizing axes in subplots
Last updated