stddev_pop(...)
Returns the population standard deviation of a given set of numbers
Works with the following datatypes:
This function works with 2.1 endpoint(s). What does this mean? »
The stddev_pop(...)
function is most commonly used in $select
aggregations to return the standard deviation of the population of a set of numeric values (Numbers). It is most often used to compare the distribution of values against the mean of those values. For example, to fetch the average and standard deviation of the salaries of all of the employees at the City of Chicago:
It can also be used in $group
aggregations, like this one to get the average and standard deviation of White House salaries by job type:
A similar function, stddev_samp(...)
allows you to calculate the standard deviation based on a sampling of values.