STD
Learn how to use the STD aggregate function in PlaidCloud Lakehouse. Returns the population standard deviation. Alias for
STDDEV_POP.Returns the population standard deviation. Alias for STDDEV_POP.
Analyze Syntax
func.std(get_column(table, 'score'))
Analyze Examples
func.std(get_column(table, 'score'))
┌───────┐
│ 15.32 │
└───────┘
SQL Syntax
STD(<score>)
SQL Examples
SELECT STD(score) FROM test_results;
┌───────┐
│ 15.32 │
└───────┘