VAR_POP
Learn how to use the VAR_POP aggregate function in PlaidCloud Lakehouse. Returns the population variance. Alias for
VARIANCE_POP - with syntax and examples.Returns the population variance. Alias for VARIANCE_POP.
Analyze Syntax
func.var_pop(get_column(table, 'score'))
Analyze Examples
func.var_pop(get_column(table, 'score'))
┌────────┐
│ 234.72 │
└────────┘
SQL Syntax
VAR_POP(<score>)
SQL Examples
SELECT VAR_POP(score) FROM test_results;
┌────────┐
│ 234.72 │
└────────┘