plot_line_chart
Generate a line chart from a Teradata table using a label column for x-axis and one or more columns for y-axis. Specify table name, label, and data columns.
Instructions
Function to generate a line plot for labels and columns. Columns mentioned in labels are used for x-axis and columns are used for y-axis.
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
columns:
Required Argument.
Specifies the column to be used for generating the line plot.
Types: List[str]RETURNS: 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 | |
| columns | Yes | Required Argument. Specifies the column to be used for generating the line plot. Types: List[str] |