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.
count
1 parent 484c997 commit 77b599aCopy full SHA for 77b599a
narwhals/_compliant/expr.py
@@ -511,6 +511,9 @@ def n_unique(self) -> Self:
511
def sum(self) -> Self:
512
return self._reuse_series_implementation("sum", returns_scalar=True)
513
514
+ def count(self) -> Self:
515
+ return self._reuse_series_implementation("count", returns_scalar=True)
516
+
517
def mean(self) -> Self:
518
return self._reuse_series_implementation("mean", returns_scalar=True)
519
@@ -539,7 +542,7 @@ def all(self) -> Self:
539
542
def max(self) -> Self:
540
543
return self._reuse_series_implementation("max", returns_scalar=True)
541
544
- def mix(self) -> Self:
545
+ def min(self) -> Self:
546
return self._reuse_series_implementation("min", returns_scalar=True)
547
548
def arg_min(self) -> Self:
0 commit comments