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 3266678 commit e331554Copy full SHA for e331554
pandas-stubs/core/groupby/generic.pyi
@@ -100,6 +100,7 @@ class SeriesGroupBy(GroupBy):
100
def nlargest(self, n: int = ..., keep: str = ...) -> Series[S1]: ...
101
def nsmallest(self, n: int = ..., keep: str = ...) -> Series[S1]: ...
102
def nth(self, n: int | Sequence[int], dropna: str | None = ...) -> Series[S1]: ...
103
+ def sum(self) -> Series[S1]: ...
104
105
class _DataFrameGroupByScalar(DataFrameGroupBy):
106
def __iter__(self) -> Iterator[tuple[Scalar, DataFrame]]: ...
0 commit comments