stdev() (aggregation function)

Learn how to use the stdev() aggregation function to calculate the standard deviation of an expression using Bessel’s correction.

Calculates the standard deviation of expr across the group, using Bessel’s correction for a small dataset that is considered a sample.

For a large dataset that is representative of the population, use stdevp() (aggregation function).

Formula

This function uses the following formula.

Image showing a Stdev sample formula.

Syntax

stdev(expr)

Parameters

NameTypeRequiredDescription
exprstring✔️The expression used for the standard deviation aggregation calculation.

Returns

Returns the standard deviation value of expr across the group.

Example

The following example shows the standard deviation for the group.

range x from 1 to 5 step 1
| summarize make_list(x), stdev(x)

Output

list_xstdev_x
[ 1, 2, 3, 4, 5]1.58113883008419