Calculates and returns the convex hull for the values in a table specified by input parameter table_name.
Parameters
Name of table on which the operation will be performed. Must be an existing table, in [schema_name.]table_name format, using standard name resolution rules.
Name of the column containing the x coordinates of the points for the operation being performed.
Name of the column containing the y coordinates of the points for the operation being performed.
Optional parameters. The default value is an empty dict ( ).
Returns
A dict with the following entries–
Array of x coordinates of the resulting convex set.
Array of y coordinates of the resulting convex set.
Count of the number of points in the convex set.
Indicates whether a valid convex hull could be computed for the input.
Additional information.