7 using System.Collections.Generic;
37 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
62 IDictionary<string, string>
options =
null)
78 public IList<double>
x_vector {
get;
set; } =
new List<double>();
82 public IList<double>
y_vector {
get;
set; } =
new List<double>();
90 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
A set of results returned by Kinetica.aggregateConvexHull.
string y_column_name
Name of the column containing the y coordinates of the points for the operation being performed.
IDictionary< string, string > options
Optional parameters.
AggregateConvexHullRequest(string table_name, string x_column_name, string y_column_name, IDictionary< string, string > options=null)
Constructs an AggregateConvexHullRequest object with the specified parameters.
IList< double > x_vector
Array of x coordinates of the resulting convex set.
A set of parameters for Kinetica.aggregateConvexHull.
IDictionary< string, string > info
Additional information.
string table_name
Name of table on which the operation will be performed.
string x_column_name
Name of the column containing the x coordinates of the points for the operation being performed.
AggregateConvexHullRequest()
Constructs an AggregateConvexHullRequest object with default parameters.
int count
Count of the number of points in the convex set.
IList< double > y_vector
Array of y coordinates of the resulting convex set.
KineticaData - class to help with Avro Encoding for Kinetica