Concept Flow - Fig, ax = plt.subplots pattern
Call plt.subplots()
Create Figure object (fig)
Create Axes object(s) (ax)
Return fig, ax to variables
Use ax to plot data
Show or save figure
This flow shows how plt.subplots() creates a figure and axes, returns them, and then you use the axes to draw your plot.