STDDEV_POP
Learn how to use the STDDEV_POP aggregate function in PlaidCloud Lakehouse. Returns the population standard deviation - see syntax, examples, and output.
Returns the population standard deviation.
Analyze Syntax
func.stddev_pop(get_column(table, 'score'))
Analyze Examples
func.stddev_pop(get_column(table, 'score'))
┌───────┐
│ 15.32 │
└───────┘
SQL Syntax
STDDEV_POP(<score>)
SQL Examples
SELECT STDDEV_POP(score) FROM test_results;
┌───────┐
│ 15.32 │
└───────┘