plot_polar_chart
Generate a polar area chart from a Teradata table using specified labels and a column for values to visualize data distribution.
Instructions
Function to generate a polar area plot for labels and columns. Columns mentioned in labels are used as labels and column is used to plot.
PARAMETERS: table_name: Required Argument. Specifies the name of the table to generate the donut plot. Types: str
labels:
Required Argument.
Specifies the labels to be used for the line plot.
Types: str
column:
Required Argument.
Specifies the column to be used for generating the line plot.
Types: strRETURNS: dict
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_name | Yes | Required Argument. Specifies the name of the table to generate the donut plot. Types: str | |
| labels | Yes | Required Argument. Specifies the labels to be used for the line plot. Types: str | |
| column | Yes | Required Argument. Specifies the column to be used for generating the line plot. Types: str |