Concept Flow - Violin plot with plt.violinplot
Prepare data array
Call plt.violinplot(data)
Calculate kernel density estimate
Draw violin shape for data distribution
Add median and extrema markers
Show plot with plt.show()
The flow shows how data is prepared, passed to plt.violinplot, which calculates the distribution shape and draws the violin plot with summary statistics.