7 using System.Collections.Generic;
91 public string stats {
get;
set; }
94 public double start {
get;
set; }
97 public double end {
get;
set; }
138 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
209 IDictionary<string, string>
options =
null)
215 this.stats =
stats ??
"";
233 public IDictionary<string, IList<double>>
stats {
get;
set; } =
new Dictionary<string, IList<double>>();
236 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IDictionary< string, IList< double > > stats
A map with a key for each statistic in the stats input parameter having a value that is a vector of t...
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:
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 stats
A string of comma separated list of the statistics to calculate, e.g.
double interval
The interval of a bin.
IDictionary< string, string > info
Additional information.
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
A set of string constants for the parameter options.
A set of results returned by Kinetica.aggregateStatisticsByRange.
string table_name
Name of the table on which the ranged-statistics operation will be performed, in [schema_name.
double end
The upper bound of the binning-column.
const string ORDER_COLUMN_NAME
Name of the column used for candlestick charting techniques.