Kinetica C# API
Version 6.1.0.0
|
Comma separated list of the statistics to calculate, e.g. More...
Public Attributes | |
const string | COUNT = "count" |
Number of objects (independent of the given column(s)). More... | |
const string | MEAN = "mean" |
Arithmetic mean (average), equivalent to sum/count. More... | |
const string | STDV = "stdv" |
Sample standard deviation (denominator is count-1). More... | |
const string | VARIANCE = "variance" |
Unbiased sample variance (denominator is count-1). More... | |
const string | SKEW = "skew" |
Skewness (third standardized moment). More... | |
const string | KURTOSIS = "kurtosis" |
Kurtosis (fourth standardized moment). More... | |
const string | SUM = "sum" |
Sum of all values in the column(s). More... | |
const string | MIN = "min" |
Minimum value of the column(s). More... | |
const string | MAX = "max" |
Maximum value of the column(s). More... | |
const string | WEIGHTED_AVERAGE = "weighted_average" |
Weighted arithmetic mean (using the option weight_column_name as the weighting column). More... | |
const string | CARDINALITY = "cardinality" |
Number of unique values in the column(s). More... | |
const string | ESTIMATED_CARDINALITY = "estimated_cardinality" |
Estimate (via hyperloglog technique) of the number of unique values in the column(s). More... | |
const string | PERCENTILE = "percentile" |
Estimate (via t-digest) of the given percentile of the column(s) (percentile(50.0) will be an approximation of the median). More... | |
const string | PERCENTILE_RANK = "percentile_rank" |
Estimate (via t-digest) of the percentile rank of the given value in the column(s) (if the given value is the median of the column(s), percentile_rank(<median>) will return approximately 50.0). More... | |
Comma separated list of the statistics to calculate, e.g.
"sum,mean". Supported values:
A set of string constants for the parameter stats.
Definition at line 150 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.CARDINALITY = "cardinality" |
Number of unique values in the column(s).
Definition at line 189 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.COUNT = "count" |
Number of objects (independent of the given column(s)).
Definition at line 155 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.ESTIMATED_CARDINALITY = "estimated_cardinality" |
Estimate (via hyperloglog technique) of the number of unique values in the column(s).
Definition at line 193 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.KURTOSIS = "kurtosis" |
Kurtosis (fourth standardized moment).
Definition at line 173 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.MAX = "max" |
Maximum value of the column(s).
Definition at line 182 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.MEAN = "mean" |
Arithmetic mean (average), equivalent to sum/count.
Definition at line 159 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.MIN = "min" |
Minimum value of the column(s).
Definition at line 179 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.PERCENTILE = "percentile" |
Estimate (via t-digest) of the given percentile of the column(s) (percentile(50.0) will be an approximation of the median).
Definition at line 198 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.PERCENTILE_RANK = "percentile_rank" |
Estimate (via t-digest) of the percentile rank of the given value in the column(s) (if the given value is the median of the column(s), percentile_rank(<median>) will return approximately 50.0).
Definition at line 204 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.SKEW = "skew" |
Skewness (third standardized moment).
Definition at line 170 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.STDV = "stdv" |
Sample standard deviation (denominator is count-1).
Definition at line 163 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.SUM = "sum" |
Sum of all values in the column(s).
Definition at line 176 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.VARIANCE = "variance" |
Unbiased sample variance (denominator is count-1).
Definition at line 167 of file AggregateStatistics.cs.
const string kinetica.AggregateStatisticsRequest.Stats.WEIGHTED_AVERAGE = "weighted_average" |
Weighted arithmetic mean (using the option weight_column_name as the weighting column).
Definition at line 186 of file AggregateStatistics.cs.