File tree 2 files changed +13
-4
lines changed
2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -85,11 +85,8 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
85
85
-i " pandas.arrays.NumpyExtensionArray SA01" \
86
86
-i " pandas.arrays.TimedeltaArray PR07,SA01" \
87
87
-i " pandas.core.groupby.DataFrameGroupBy.boxplot PR07,RT03,SA01" \
88
- -i " pandas.core.groupby.DataFrameGroupBy.get_group RT03,SA01" \
89
88
-i " pandas.core.groupby.DataFrameGroupBy.plot PR02" \
90
- -i " pandas.core.groupby.SeriesGroupBy.get_group RT03,SA01" \
91
89
-i " pandas.core.groupby.SeriesGroupBy.plot PR02" \
92
- -i " pandas.core.resample.Resampler.get_group RT03,SA01" \
93
90
-i " pandas.core.resample.Resampler.max PR01,RT03,SA01" \
94
91
-i " pandas.core.resample.Resampler.mean SA01" \
95
92
-i " pandas.core.resample.Resampler.min PR01,RT03,SA01" \
Original file line number Diff line number Diff line change @@ -715,7 +715,19 @@ def get_group(self, name) -> DataFrame | Series:
715
715
716
716
Returns
717
717
-------
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
724
+ during a groupby operation.
725
+ DataFrameGroupBy.indices: Provides a mapping of group rows to positions
726
+ of the elements.
727
+ SeriesGroupBy.groups: Dictionary representation of the groupings formed
728
+ during a groupby operation.
729
+ SeriesGroupBy.indices: Provides a mapping of group rows to positions
730
+ of the elements.
719
731
720
732
Examples
721
733
--------
You can’t perform that action at this time.
0 commit comments