STDDEV() calculates the standard deviation of a set of numbers, which measures the amount of variation or dispersion from the average. This statistical function is useful for analyzing data spread, identifying outliers, and understanding the distribution of values in a dataset.
STDDEV(number1 [, number2, number3, ...])
STDDEV() returns a numeric value
// Simple sequence
STDDEV(1, 2, 3) = 1
// Larger range of values
STDDEV(50, 100, 1) = 44
// Negative values
STDDEV(-50, -100, -1) = 44
// Additional examples
STDDEV(10, 10, 10) = 0 // No variation
STDDEV(0, 0, 0) = 0 // Zero values
STDDEV(100, 200, 300) = 100 // Linear sequence