mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-10 19:36:33 +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):
|
||||
return F('varSamp', x)
|
||||
|
||||
@staticmethod
|
||||
@aggregate
|
||||
def stddevPop(expr):
|
||||
return F('stddevPop', expr)
|
||||
|
||||
@staticmethod
|
||||
@aggregate
|
||||
def stddevSamp(expr):
|
||||
return F('stddevSamp', expr)
|
||||
|
||||
@staticmethod
|
||||
@aggregate
|
||||
@parametric
|
||||
|
|
Loading…
Reference in New Issue
Block a user