You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
staticconstexprconstchar *Description = "Returns the excess kurtosis (Fisher’s definition) of all input values, with a bias correction according to the sample size";
190
204
staticconstexprconstchar *Example = "";
205
+
staticconstexprconstchar *Categories = "";
191
206
192
207
static AggregateFunction GetFunction();
193
208
};
@@ -197,6 +212,7 @@ struct KurtosisPopFun {
197
212
staticconstexprconstchar *Parameters = "x";
198
213
staticconstexprconstchar *Description = "Returns the excess kurtosis (Fisher’s definition) of all input values, without bias correction";
199
214
staticconstexprconstchar *Example = "";
215
+
staticconstexprconstchar *Categories = "";
200
216
201
217
static AggregateFunction GetFunction();
202
218
};
@@ -206,6 +222,7 @@ struct ProductFun {
206
222
staticconstexprconstchar *Parameters = "arg";
207
223
staticconstexprconstchar *Description = "Calculates the product of all tuples in arg.";
208
224
staticconstexprconstchar *Example = "product(A)";
225
+
staticconstexprconstchar *Categories = "";
209
226
210
227
static AggregateFunction GetFunction();
211
228
};
@@ -215,6 +232,7 @@ struct SkewnessFun {
215
232
staticconstexprconstchar *Parameters = "x";
216
233
staticconstexprconstchar *Description = "Returns the skewness of all input values.";
staticconstexprconstchar *Description = "Returns the median absolute deviation for the values within x. NULL values are ignored. Temporal types return a positive INTERVAL. ";
31
32
staticconstexprconstchar *Example = "mad(x)";
33
+
staticconstexprconstchar *Categories = "";
32
34
33
35
static AggregateFunctionSet GetFunctions();
34
36
};
@@ -38,6 +40,7 @@ struct MedianFun {
38
40
staticconstexprconstchar *Parameters = "x";
39
41
staticconstexprconstchar *Description = "Returns the middle value of the set. NULL values are ignored. For even value counts, interpolate-able types (numeric, date/time) return the average of the two middle values. Non-interpolate-able types (everything else) return the lower of the two middle values.";
40
42
staticconstexprconstchar *Example = "median(x)";
43
+
staticconstexprconstchar *Categories = "";
41
44
42
45
static AggregateFunctionSet GetFunctions();
43
46
};
@@ -47,6 +50,7 @@ struct ModeFun {
47
50
staticconstexprconstchar *Parameters = "x";
48
51
staticconstexprconstchar *Description = "Returns the most frequent value for the values within x. NULL values are ignored.";
49
52
staticconstexprconstchar *Example = "";
53
+
staticconstexprconstchar *Categories = "";
50
54
51
55
static AggregateFunctionSet GetFunctions();
52
56
};
@@ -56,6 +60,7 @@ struct QuantileDiscFun {
56
60
staticconstexprconstchar *Parameters = "x,pos";
57
61
staticconstexprconstchar *Description = "Returns the exact quantile number between 0 and 1 . If pos is a LIST of FLOATs, then the result is a LIST of the corresponding exact quantiles.";
staticconstexprconstchar *Description = "Returns the interpolated quantile number between 0 and 1 . If pos is a LIST of FLOATs, then the result is a LIST of the corresponding interpolated quantiles. ";
staticconstexprconstchar *Description = "Gives the approximate quantile using reservoir sampling, the sample size is optional and uses 8192 as a default size.";
0 commit comments