7 using System.Collections.Generic;
61 public double start {
get; set; }
65 public double end {
get; set; }
81 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
119 IDictionary<string, string>
options = null)
121 this.table_name = table_name ??
"";
122 this.column_name = column_name ??
"";
126 this.options =
options ??
new Dictionary<string, string>();
139 public IList<double>
counts {
get; set; } =
new List<double>();
147 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 /aggregate/histogram.
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.
IList< double > counts
The array of calculated values that represents the histogram data points.
A set of results returned by /aggregate/histogram.
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.