Concept Flow - Line plots with plot()
Start with DataFrame
Call df.plot()
Plot function reads data
Draw line plot
Show plot on screen
End
The flow starts with a DataFrame, calls the plot() method, which reads the data and draws a line plot, then shows it on screen.