7 using System.Collections.Generic;
57 public double start {
get;
set; }
61 public double end {
get;
set; }
78 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
117 IDictionary<string, string>
options =
null)
135 public IList<double>
counts {
get;
set; } =
new List<double>();
143 public double end {
get;
set; }
146 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
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.
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 Kinetica.aggregateHistogram.
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.
A set of string constants for the parameter options.
KineticaData - class to help with Avro Encoding for Kinetica
double interval
The size of each bin within the start and end parameters.
double start
Value of start.
IDictionary< string, string > info
Additional information.