plot_polar_chart
Generates a polar area chart directly from a Teradata table. Specify the table, category column, and numeric value column to visualize data.
Instructions
Generate a polar area chart that reads directly from a Teradata table — do NOT use base_readQuery first. Specify the table in table_name, the category column in labels, and the numeric value column in column. Use when the user explicitly asks for a polar chart or polar area chart. For standard pie-style breakdowns, use plot_pie_chart instead.
PARAMETERS: table_name: Required Argument. Specifies the name of the table to generate the polar chart. Types: str
labels:
Required Argument.
Specifies the category column for labels.
Types: str
column:
Required Argument.
Specifies the numeric value column for the polar chart.
Types: strRETURNS: dict
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| column | Yes | Required Argument. Specifies the numeric value column for the polar chart. Types: str | |
| labels | Yes | Required Argument. Specifies the category column for labels. Types: str | |
| table_name | Yes | Required Argument. Specifies the name of the table to generate the polar chart. Types: str |