VAR_POP (Lakehouse v2)
Returns the population variance. Alias for VARIANCE_POP.
Analyze Syntax
Section titled “Analyze Syntax”func.var_pop(get_column(table, 'score'))Analyze Examples
Section titled “Analyze Examples”func.var_pop(get_column(table, 'score'))
┌────────┐│ 234.72 │└────────┘SQL Syntax
Section titled “SQL Syntax”VAR_POP(<score>)SQL Examples
Section titled “SQL Examples”SELECT VAR_POP(score) FROM test_results;
┌────────┐│ 234.72 │└────────┘