Concept Flow - Plt.subplots with rows and columns
Call plt.subplots(rows, cols)
Create Figure object
Create Axes array with shape (rows, cols)
Return Figure and Axes
User plots on each Axes
Display or save the figure
The function plt.subplots creates a figure and a grid of subplots (axes) arranged in rows and columns, returning them for plotting.