7 using System.Collections.Generic;
29 public class AggregateHistogramRequest : KineticaData
43 public const string START =
"start";
46 public const string END =
"end";
66 public double start {
get;
set; }
70 public double end {
get;
set; }
102 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
156 IDictionary<string, string>
options =
null)
170 public class AggregateHistogramResponse : KineticaData
174 public IList<double>
counts {
get;
set; } =
new List<double>();
178 public double start {
get;
set; }
182 public double end {
get;
set; }
185 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
double interval
The size of each bin within the start and end parameters.
IDictionary< string, string > options
Optional parameters.
double end
Upper end value of the histogram interval, inclusive.
AggregateHistogramRequest()
Constructs an AggregateHistogramRequest object with default parameters.
const string VALUE_COLUMN
The name of the column to use when calculating the bin values (values are summed).
const string END
The end parameter for char types.
IList< double > counts
The array of calculated values that represents the histogram data points.
double start
Lower end value of the histogram interval, inclusive.
const string START
The start parameter for char types.
double start
Value of start.
string table_name
Name of the table on which the operation will be performed.
const string INTERVAL
The interval parameter for char types.
string column_name
Name of a column or an expression of one or more column names over which the histogram will be calcul...
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.
IDictionary< string, string > info
Additional information.