Skip to content
Legacy docs for Tenzir v5.x. For the latest Tenzir v6 series, visit docs.tenzir.com. Migrating from v5? Read the Tenzir v6 migration guide.

Computes the standard deviation of all grouped values.

stddev(xs:list) -> float

The stddev function returns the standard deviation of all numeric values in xs.

The values to evaluate.

from {x: 1}, {x: 2}, {x: 3}
summarize stddev_value=stddev(x)
{stddev_value: 0.816}

Last updated: