plot_distribution
Create histogram visualizations to analyze data distributions from dataframes, with options for grouping, bin customization, and chart titles.
Instructions
Create a distribution histogram.
Args: name: Name of the dataframe value_column: Column containing values to plot group_by: Optional column to create overlaid distributions bins: Number of histogram bins (default: 30) title: Optional chart title
Returns: Base64 encoded plot image.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| value_column | Yes | ||
| group_by | No | ||
| bins | No | ||
| title | No |