plot_violin
Visualize data distributions with violin plots, combining box plot and KDE to reveal shape, skewness, and multimodality. Optionally group by a categorical column for comparison.
Instructions
Violin plot: combines box plot with KDE to show full distribution shape. Better than boxplot for skewed or multimodal distributions. Optional grouping. Example: plot_violin(column="Revenue", by="CargoType")
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| by | No | ||
| column | Yes | ||
| df_name | No | ||
| save_path | No |