Skip to content

Commit 082059c

Browse files
committed
Added sections
1 parent 85fa90e commit 082059c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pandas/core/groupby/groupby.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,16 @@ def get_group(self, name) -> DataFrame | Series:
715715
716716
Returns
717717
-------
718-
DataFrame or Series
718+
Series or DataFrame
719+
Get the respective Series or DataFrame corresponding to the group provided
720+
721+
See Also
722+
--------
723+
DataFrameGroupBy.groups: dictionary representation of the groupings formed during a groupby operation
724+
DataFrameGroupBy.indices: Provides a mapping of group rows to positions of the elements.
725+
SeriesGroupBy.groups: dictionary representation of the groupings formed during a groupby operation
726+
SeriesGroupBy.indices: Provides a mapping of group rows to positions of the elements.
727+
719728
720729
Examples
721730
--------

0 commit comments

Comments
 (0)