12345678910111213141516171819202122 |
- // This is generated by ESQL's AbstractFunctionTestCase. Do no edit it. See ../README.md for how to regenerate it.
- *Examples*
- [source.merge.styled,esql]
- ----
- include::{esql-specs}/stats.csv-spec[tag=stdev]
- ----
- [%header.monospaced.styled,format=dsv,separator=|]
- |===
- include::{esql-specs}/stats.csv-spec[tag=stdev-result]
- |===
- The expression can use inline functions. For example, to calculate the standard deviation of each employee's maximum salary changes, first use `MV_MAX` on each row, and then use `STD_DEV` on the result
- [source.merge.styled,esql]
- ----
- include::{esql-specs}/stats.csv-spec[tag=docsStatsStdDevNestedExpression]
- ----
- [%header.monospaced.styled,format=dsv,separator=|]
- |===
- include::{esql-specs}/stats.csv-spec[tag=docsStatsStdDevNestedExpression-result]
- |===
|