7 using System.Collections.Generic;
68 public double start {
get;
set; }
72 public double end {
get;
set; }
89 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
128 IDictionary<string, string>
options = null)
130 this.table_name = table_name ??
"";
131 this.column_name = column_name ??
"";
150 public IList<double> counts {
get;
set; } =
new List<double>();
158 public double end {
get;
set; }
double end
Upper end value of the histogram interval, inclusive.
string table_name
Name of the table on which the operation will be performed.
AggregateHistogramRequest()
Constructs an AggregateHistogramRequest object with default parameters.
A set of parameters for Kinetica.aggregateHistogram(string,string,double,double,double,IDictionary<string, string>).
const string VALUE_COLUMN
The name of the column to use when calculating the bin values (values are summed).
double start
Lower end value of the histogram interval, inclusive.
string column_name
Name of a column or an expression of one or more column names over which the histogram will be calcul...
IDictionary< string, string > options
Optional parameters.
A set of results returned by Kinetica.aggregateHistogram(string,string,double,double,double,IDictionary<string, string>).
AggregateHistogramRequest(string table_name, string column_name, double start, double end, double interval, IDictionary< string, string > options=null)
Constructs an AggregateHistogramRequest object with the specified parameters.
KineticaData - class to help with Avro Encoding for Kinetica
double interval
The size of each bin within the start and end parameters.