Variance Command
- Variance( <List of Raw Data> )
-
Calculates the variance of list elements.
Variance({1, 2, 3})
yields 0.67.
- Variance( <List of Numbers>, <List of Frequencies> )
-
Calculates the variance of list elements, considering the frequencies.
Variance({1, 2, 3} , {1, 2, 1})
yields 0.5.