plot_radar_chart
Generate a radar chart from a Teradata table for multi-dimensional category comparison. Use table name, label column, and value columns.
Instructions
Generate a radar chart (spider chart or web chart) that reads directly from a Teradata table — do NOT use base_readQuery to pre-fetch data first. Specify the table in table_name, the category column in labels, and one or more value columns in columns. Use when the user asks for a spider chart, radar chart, web chart, or multi-dimensional comparison across categories. For time-series or trend data, use plot_line_chart instead.
PARAMETERS: table_name: Required Argument. Specifies the name of the table to generate the radar chart. Types: str
labels:
Required Argument.
Specifies the category column for labels.
Types: str
columns:
Required Argument.
Specifies the value column(s) for the radar chart.
Types: str | List[str]RETURNS: dict
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| labels | Yes | Required Argument. Specifies the category column for labels. Types: str | |
| columns | Yes | Required Argument. Specifies the value column(s) for the radar chart. Types: str | List[str] | |
| table_name | Yes | Required Argument. Specifies the name of the table to generate the radar chart. Types: str |