|
@@ -37,12 +37,12 @@ public class StdDev extends AggregateFunction implements ToAggregator {
|
|
|
|
|
|
@FunctionInfo(
|
|
|
returnType = "double",
|
|
|
- description = "The standard deviation of a numeric field.",
|
|
|
+ description = "The population standard deviation of a numeric field.",
|
|
|
type = FunctionType.AGGREGATE,
|
|
|
examples = {
|
|
|
@Example(file = "stats", tag = "stdev"),
|
|
|
@Example(
|
|
|
- description = "The expression can use inline functions. For example, to calculate the standard "
|
|
|
+ description = "The expression can use inline functions. For example, to calculate the population standard "
|
|
|
+ "deviation of each employee’s maximum salary changes, first use `MV_MAX` on each row, "
|
|
|
+ "and then use `STD_DEV` on the result",
|
|
|
file = "stats",
|