Concept Flow - Pyplot interface overview
Import pyplot as plt
Create Figure & Axes
Plot data (e.g., plt.plot())
Customize plot (title, labels)
Show plot with plt.show()
END
This flow shows how pyplot is imported, used to create a figure, plot data, customize it, and finally display the plot.