VAR_POP
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 │
└────────┘