Skip to main content
Skip to main content

varPop

varPop

Introduced in: v1.1

Calculates the population variance.

The population variance is calculated using the formula:

Σ(xxˉ)2n\frac{\Sigma{(x - \bar{x})^2}}{n}

Where:

  • xx is each value in the population
  • xˉ\bar{x} is the population mean
  • nn is the population size
Note

This function uses a numerically unstable algorithm. If you need numerical stability in calculations, use the varPopStable function. It works slower but provides a lower computational error.

Syntax

varPop(x)

Aliases: VAR_POP

Arguments

Returned value

Returns the population variance of x. Float64

Examples

Computing population variance

DROP TABLE IF EXISTS test_data;
CREATE TABLE test_data
(
    x UInt8,
)
ENGINE = Memory;

INSERT INTO test_data VALUES (3), (3), (3), (4), (4), (5), (5), (7), (11), (15);

SELECT
    varPop(x) AS var_pop
FROM test_data;
┌─var_pop─┐
│    14.4 │
└─────────┘