SampleVariance Command
- SampleVariance( <List of Raw Data> )
-
Returns the sample variance of the given list of numbers.
SampleVariance({1, 2, 3, 4, 5})
yields a = 2.5.
- SampleVariance( <List of Numbers>, <List of Frequencies> )
-
Returns the sample variance of the given list of numbers with the specified frequencies.
SampleVariance({1, 2, 3, 4, 5}, {3, 2, 4, 4, 1})
yields a = 1.67.
If the list in the |
SampleVariance({a, b, c})
yields 13a2−13ab−13ac+13b2−13bc+13c2.