Skip to main content
Module

x/statistics/mod.ts>sampleVariance

Deno basic statistics module.
Latest
function sampleVariance
Re-export
import { sampleVariance } from "https://deno.land/x/statistics@v0.1.1/mod.ts";

The sample variance is the sum of squared deviations from the mean. The sample variance is distinguished from the variance by the usage of Bessel's Correction: instead of dividing the sum of squared deviations by the length of the input, it is divided by the length minus one. This corrects the bias in estimating a value from a set that you don't know if full.

References:

Examples

sampleVariance([1, 2, 3, 4, 5]); // => 2.5

Parameters

x: number[]

a sample of two or more data points

Returns

number

sample variance