Skip to content

Commit a42d982

Browse files
committed
remove extra spaces
1 parent e43d2a9 commit a42d982

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/core/groupby/groupby.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3025,6 +3025,10 @@ def prod(self, numeric_only: bool = False, min_count: int = 0) -> NDFrameT:
30253025
Series or DataFrame
30263026
Computed prod of values within each group.
30273027
3028+
See Also
3029+
--------
3030+
DataFrame.prod : Return the product of the values over the requested axis.
3031+
30283032
Examples
30293033
--------
30303034
For SeriesGroupBy:
@@ -3058,10 +3062,6 @@ def prod(self, numeric_only: bool = False, min_count: int = 0) -> NDFrameT:
30583062
a
30593063
1 16 10
30603064
2 30 72
3061-
3062-
See Also
3063-
--------
3064-
DataFrame.prod : Return the product of the values over the requested axis.
30653065
"""
30663066
return self._agg_general(
30673067
numeric_only=numeric_only, min_count=min_count, alias="prod", npfunc=np.prod

0 commit comments

Comments
 (0)