VisualizationTools enables agents to create various types of charts and plots using matplotlib.
Parameter | Type | Default | Description |
---|---|---|---|
output_dir | str | "charts" | Directory to save generated charts. |
enable_create_bar_chart | bool | True | Enable bar chart creation. |
enable_create_line_chart | bool | True | Enable line chart creation. |
enable_create_pie_chart | bool | True | Enable pie chart creation. |
enable_create_scatter_plot | bool | True | Enable scatter plot creation. |
enable_create_histogram | bool | True | Enable histogram creation. |
Function | Description |
---|---|
create_bar_chart | Create bar charts for categorical data comparison. |
create_line_chart | Create line charts for time series and trend visualization. |
create_pie_chart | Create pie charts for proportional data representation. |
create_scatter_plot | Create scatter plots for correlation analysis. |
create_histogram | Create histograms for data distribution visualization. |