7 using System.Collections.Generic;
42 public const string START =
"start";
45 public const string END =
"end";
65 public double start {
get;
set; }
69 public double end {
get;
set; }
99 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
150 IDictionary<string, string>
options =
null)
168 public IList<double>
counts {
get;
set; } =
new List<double>();
176 public double end {
get;
set; }
179 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
double end
Upper end value of the histogram interval, inclusive.
const string VALUE_COLUMN
The name of the column to use when calculating the bin values (values are summed).
A set of string constants for the parameter options.
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
string column_name
Name of a column or an expression of one or more column names over which the histogram will be calcul...
A set of results returned by Kinetica.aggregateHistogram.
string table_name
Name of the table on which the operation will be performed.
IDictionary< string, string > info
Additional information.
const string END
The end parameter for char types.
double interval
The size of each bin within the start and end parameters.
const string INTERVAL
The interval parameter for char types.
double start
Lower end value of the histogram interval, inclusive.
IList< double > counts
The array of calculated values that represents the histogram data points.
const string START
The start parameter for char types.
AggregateHistogramRequest()
Constructs an AggregateHistogramRequest object with default parameters.
A set of parameters for Kinetica.aggregateHistogram.
double start
Value of start.
IDictionary< string, string > options
Optional parameters.