Loading TOC...

math.variance

math.variance(
   arg as Number[]
) as Number?

Summary

Returns the sample variance of a sequence of values. The function returns the empty sequence if the length of the input sequence is less than 2.

Parameters
arg The sequence of values.

Example

  math.variance([122, 100, 23])

  => 2702.33333333333

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.