weighted-avg.asciidoc 556 B

1234567891011121314151617181920212223242526272829303132333435
  1. [discrete]
  2. [[esql-agg-weighted-avg]]
  3. === `WEIGHTED_AVG`
  4. *Syntax*
  5. [source,esql]
  6. ----
  7. WEIGHTED_AVG(expression, weight)
  8. ----
  9. `expression`::
  10. Numeric expression.
  11. `weight`::
  12. Numeric weight.
  13. *Description*
  14. The weighted average of a numeric expression.
  15. *Supported types*
  16. The result is always a `double` no matter the input type.
  17. *Examples*
  18. [source.merge.styled,esql]
  19. ----
  20. include::{esql-specs}/stats.csv-spec[tag=weighted-avg]
  21. ----
  22. [%header.monospaced.styled,format=dsv,separator=|]
  23. |===
  24. include::{esql-specs}/stats.csv-spec[tag=weighted-avg-result]
  25. |===