7 using System.Collections.Generic;
127 public double end {
get;
set; }
164 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
232 IDictionary<string, string>
options = null)
234 this.table_name = table_name ??
"";
235 this.select_expression = select_expression ??
"";
236 this.column_name = column_name ??
"";
237 this.value_column_name = value_column_name ??
"";
238 this.stats = stats ??
"";
259 public IDictionary<string, IList<double>>
stats {
get;
set; } =
new Dictionary<string, IList<double>>();
const string WEIGHT_COLUMN_NAME
Name of the column used as weighting column for the weighted_average statistic.
const string ADDITIONAL_COLUMN_NAMES
A list of comma separated value-column names over which statistics can be accumulated along with the ...
IDictionary< string, string > options
Map of optional parameters: ADDITIONAL_COLUMN_NAMES: A list of comma separated value-column names ove...
AggregateStatisticsByRangeRequest()
Constructs an AggregateStatisticsByRangeRequest object with default parameters.
double start
The lower bound of the binning-column.
const string BIN_VALUES
A list of comma separated binning-column values.
string column_name
Name of the binning-column used to divide the set samples into bins.
A set of parameters for Kinetica.aggregateStatisticsByRange(string,string,string,string,string,double,double,double,IDictionary<string, string>).
string stats
A string of comma separated list of the statistics to calculate, e.g.
double interval
The interval of a bin.
string value_column_name
Name of the value-column for which statistics are to be computed.
AggregateStatisticsByRangeRequest(string table_name, string select_expression, string column_name, string value_column_name, string stats, double start, double end, double interval, IDictionary< string, string > options=null)
Constructs an AggregateStatisticsByRangeRequest object with the specified parameters.
string select_expression
For a non-empty expression statistics are calculated for those records for which the expression is tr...
KineticaData - class to help with Avro Encoding for Kinetica
Map of optional parameters: ADDITIONAL_COLUMN_NAMES: A list of comma separated value-column names ove...
A set of results returned by Kinetica.aggregateStatisticsByRange(string,string,string,string,string,double,double,double,IDictionary<string, string>).
string table_name
Name of the table on which the ranged-statistics operation will be performed.
double end
The upper bound of the binning-column.
const string ORDER_COLUMN_NAME
Name of the column used for candlestick charting techniques.