mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-22 00:56:34 +03:00
1. add stddevPop func
2. add stddevSamp func
This commit is contained in:
parent
7c90c1e4c3
commit
45d807eb02
|
@ -1633,6 +1633,16 @@ class F(Cond, FunctionOperatorsMixin, metaclass=FMeta):
|
||||||
def varSamp(x):
|
def varSamp(x):
|
||||||
return F('varSamp', x)
|
return F('varSamp', x)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
@aggregate
|
||||||
|
def stddevPop(expr):
|
||||||
|
return F('stddevPop', expr)
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
@aggregate
|
||||||
|
def stddevSamp(expr):
|
||||||
|
return F('stddevSamp', expr)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
@aggregate
|
@aggregate
|
||||||
@parametric
|
@parametric
|
||||||
|
|
Loading…
Reference in New Issue
Block a user