[]
        
(Showing Draft Content)

VAR.P

This function returns variance based on the entire population, which uses only numeric values.

Syntax

VAR.P(number1,[number2],...)

Arguments

This function has these arguments:

Argument

Description

 number1

 [Required] The first number argument corresponding to a population

 number2, ...

 [Optional] Up to 255 arguments may be included. You can use a single array (cell range) instead of a list of values. You can use multiple arrays (cell ranges) as well

Remarks

The variance returns how spread out a set of data is.

Logical values and text representations of numbers that are typed into the list of arguments are counted. If an argument is an array or reference, only numbers in that array or reference are counted. Empty cells, error values, logical values, or text in the array or reference are ignored.

  • This function uses the following equation to calculate the variance,


    where x is the sample mean AVERAGE(number1,number2,…) and n is the number of values.

This function assumes that its arguments are the entire population. If your data represents only a sample of the population, then compute the variance using the VAR.S function.

This function differs from VARPA, which accepts logical or text values as well as numeric values.

Examples

VAR.P(B3,C4,B2,D10,E5)

VAR.P(A1:A9)

VAR.P(R1C2,100,R2C5,102)

VAR.P(98,85,76,87,92,89,90) gives the result 39.265306122448976