VariancePop

The VariancePop function calculates the population variance of a column or group. This statistical measure determines the spread of distribution or degree to which the column or grouped values deviate from the mean. A small variance indicates the values are close to the mean (less variability), while a large variance indicates the values are dispersed farther from the mean (greater variability).

VariancePop assumes your dataset represents an entire population. If the dataset is a sample of a larger population, use the Variance function to estimate unbiased variance.

πŸ“˜

Sigma calls the underlying CDW or DBMS function that uses the statistical sample variance definition. Refer to your CDW or DBMS provider’s documentation for details about the called function.

Syntax

VariancePop(field)

Function argument:

field
(required) The column to reference when calculating population variance.

Underlying formula

βˆ‘( xi – xΜ„ )2
n
  • xi = each sample value
  • xΜ„ = the mean of all sample values
  • n = the total number of sample values (sample size)

Example

A table contains the average temperature recorded for each month in 2021 and 2022. If the data is grouped by year, you can use the following formula to measure and compare the temperature variability throughout each year.

VariancePop([Avg monthly temp])

When you calculate the formula in the Year grouping, the function returns the population variance for each year. This example indicates greater temperature fluctuation in 2022.


Related resources