Statistical Functions
Uncategorized additional functions supported by e6data
STDDEV( expression )
select stddev(colB) from table1STDDEV_POP( expression )
select stddev_pop(colB) from table1PERCENTILE_CONT( <percentile> ) WITHIN GROUP (ORDER BY <expression> [ ASC | DESC ] )
select percentile_cont(0.5) within group1 (order by colA asc) from table1APPROX_QUANTILES( <expr>, number )
select approx_quantiles(colA, 4)Last updated
