Concept Flow - Box plot with plt.boxplot
Start with data array
Call plt.boxplot(data)
Calculate quartiles and median
Calculate whiskers and outliers
Draw box, whiskers, and points
Show plot with plt.show()
This flow shows how matplotlib takes data, calculates statistics, draws the box plot, and displays it.