populationVariance

Typefunction
DictionaryLCS
LibraryLiveCode Script
Syntax
populationVariance(<numbersList>)
Synonymspopvariance
Summary

Returns the population variance of a list of numbers.

Introduced6.1
OSmac, windows, linux, ios, android
Platformsdesktop, server, mobile
Parameters
NameTypeDescription
numbersList

A comma-separated list of numbers, or an expression that evaluates to such a list, or an array containing only numbers.

Example
populationVariance(8,10,12) -- returns 2.666667
put populationVariance(studentScores) into field "Population Variance"
Values
NameTypeDescription
return

The populationVariance function returns a number.

RelatedControl Structure: function
Glossary: return, math operation
Function: populationVariance, averageDeviation, variance, average, median, populationStandardDeviation, sum, standardDeviation
Description

Use the populationVariance function to analyze the amount of spread in a list of numbers.

The population variance is a measure of how widely distributed the numbers in the numbersList are.

If a math operation on finite inputs produces a non-finite output, an execution error is thrown. See math operations for more information.

Tagsmath