Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/reference/esql/functions/description/std_dev.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/esql/functions/examples/std_dev.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/esql/functions/kibana/docs/std_dev.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,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.",
isAggregation = true,
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",
Expand Down