mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-21 16:46:33 +03:00
Merge pull request #164 from behldizh/add-stddev-funcs-develop
Add stddev funcs to F()
This commit is contained in:
commit
1ae66f63c3
|
@ -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