File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -102,16 +102,6 @@ pub fn sum(args: PyExpr) -> PyExpr {
102102 functions_aggregate:: expr_fn:: sum ( args. expr ) . into ( )
103103}
104104
105- #[ pyfunction]
106- pub fn covar_samp ( y : PyExpr , x : PyExpr ) -> PyExpr {
107- functions_aggregate:: expr_fn:: covar_samp ( y. expr , x. expr ) . into ( )
108- }
109-
110- #[ pyfunction]
111- pub fn covar_pop ( y : PyExpr , x : PyExpr ) -> PyExpr {
112- functions_aggregate:: expr_fn:: covar_pop ( y. expr , x. expr ) . into ( )
113- }
114-
115105#[ pyfunction]
116106pub fn median ( arg : PyExpr ) -> PyExpr {
117107 functions_aggregate:: expr_fn:: median ( arg. expr ) . into ( )
@@ -813,6 +803,8 @@ aggregate_function!(bool_and);
813803aggregate_function ! ( bool_or) ;
814804aggregate_function ! ( corr, y x) ;
815805aggregate_function ! ( count) ;
806+ aggregate_function ! ( covar_samp, y x) ;
807+ aggregate_function ! ( covar_pop, y x) ;
816808
817809fn add_builder_fns_to_window (
818810 window_fn : Expr ,
You can’t perform that action at this time.
0 commit comments