We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 232ab81 commit 66f25edCopy full SHA for 66f25ed
src/functions.rs
@@ -40,6 +40,11 @@ pub fn covar_samp(y: PyExpr, x: PyExpr) -> PyExpr {
40
functions_aggregate::expr_fn::covar_samp(y.expr, x.expr).into()
41
}
42
43
+#[pyfunction]
44
+pub fn covar_pop(y: PyExpr, x: PyExpr) -> PyExpr {
45
+ functions_aggregate::expr_fn::covar_pop(y.expr, x.expr).into()
46
+}
47
+
48
#[pyfunction]
49
pub fn covar(y: PyExpr, x: PyExpr) -> PyExpr {
50
// alias for covar_samp
@@ -575,7 +580,6 @@ aggregate_function!(array_agg, ArrayAgg);
575
580
aggregate_function!(avg, Avg);
576
581
aggregate_function!(corr, Correlation);
577
582
aggregate_function!(count, Count);
578
-aggregate_function!(covar_pop, CovariancePop);
579
583
aggregate_function!(grouping, Grouping);
584
aggregate_function!(max, Max);
585
aggregate_function!(mean, Avg);
0 commit comments