A set of string constants for the parameter AggregateStatisticsRequest.stats. More…
Static Public Attributes | |
| const string | COUNT = “count” |
| Number of objects (independent of the given column(s)). | |
| const string | MEAN = “mean” |
| Arithmetic mean (average), equivalent to sum/count. | |
| const string | STDV = “stdv” |
| Sample standard deviation (denominator is count-1). | |
| const string | VARIANCE = “variance” |
| Unbiased sample variance (denominator is count-1). | |
| const string | SKEW = “skew” |
| Skewness (third standardized moment). | |
| const string | KURTOSIS = “kurtosis” |
| Kurtosis (fourth standardized moment). | |
| const string | SUM = “sum” |
| Sum of all values in the column(s). | |
| const string | MIN = “min” |
| Minimum value of the column(s). | |
| const string | MAX = “max” |
| Maximum value of the column(s). | |
| const string | WEIGHTED_AVERAGE = “weighted_average” |
| Weighted arithmetic mean (using the option WEIGHT_COLUMN_NAME as the weighting column). | |
| const string | CARDINALITY = “cardinality” |
| Number of unique values in the column(s). | |
| const string | ESTIMATED_CARDINALITY = “estimated_cardinality” |
| Estimate (via hyperloglog technique) of the number of unique values in the column(s). | |
| 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). | |
| 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). | |
Detailed Description
A set of string constants for the parameter AggregateStatisticsRequest.stats.
Comma separated list of the statistics to calculate, e.g. “sum,mean”.
Definition at line 77 of file AggregateStatistics.cs.
Member Data Documentation
◆ CARDINALITY
| static |
Number of unique values in the column(s).
Definition at line 116 of file AggregateStatistics.cs.
◆ COUNT
| static |
Number of objects (independent of the given column(s)).
Definition at line 81 of file AggregateStatistics.cs.
◆ ESTIMATED_CARDINALITY
| static |
Estimate (via hyperloglog technique) of the number of unique values in the column(s).
Definition at line 120 of file AggregateStatistics.cs.
◆ KURTOSIS
| static |
Kurtosis (fourth standardized moment).
Definition at line 99 of file AggregateStatistics.cs.
◆ MAX
| static |
Maximum value of the column(s).
Definition at line 108 of file AggregateStatistics.cs.
◆ MEAN
| static |
Arithmetic mean (average), equivalent to sum/count.
Definition at line 85 of file AggregateStatistics.cs.
◆ MIN
| static |
Minimum value of the column(s).
Definition at line 105 of file AggregateStatistics.cs.
◆ PERCENTILE
| static |
Estimate (via t-digest) of the given percentile of the column(s) (percentile(50.0) will be an approximation of the median).
Add a second, comma-separated value to calculate percentile resolution, e.g., ‘percentile(75,150)’.
Definition at line 127 of file AggregateStatistics.cs.
◆ PERCENTILE_RANK
| static |
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 133 of file AggregateStatistics.cs.
◆ SKEW
| static |
Skewness (third standardized moment).
Definition at line 96 of file AggregateStatistics.cs.
◆ STDV
| static |
Sample standard deviation (denominator is count-1).
Definition at line 89 of file AggregateStatistics.cs.
◆ SUM
| static |
Sum of all values in the column(s).
Definition at line 102 of file AggregateStatistics.cs.
◆ VARIANCE
| static |
Unbiased sample variance (denominator is count-1).
Definition at line 93 of file AggregateStatistics.cs.
◆ WEIGHTED_AVERAGE
| static |
Weighted arithmetic mean (using the option WEIGHT_COLUMN_NAME as the weighting column).
Definition at line 113 of file AggregateStatistics.cs.
The documentation for this struct was generated from the following files:
- _build/public-os_ubuntu24.04-arch_amd64-cc_gcc_13.3.0/install/Kinetica/Protocol/AggregateStatistics.cs
- Kinetica/Protocol/AggregateStatistics.cs