File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -100,15 +100,13 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
100
100
-i " pandas.core.groupby.DataFrameGroupBy.plot PR02" \
101
101
-i " pandas.core.groupby.DataFrameGroupBy.sem SA01" \
102
102
-i " pandas.core.groupby.SeriesGroupBy.get_group RT03,SA01" \
103
- -i " pandas.core.groupby.SeriesGroupBy.groups SA01" \
104
103
-i " pandas.core.groupby.SeriesGroupBy.indices SA01" \
105
104
-i " pandas.core.groupby.SeriesGroupBy.is_monotonic_decreasing SA01" \
106
105
-i " pandas.core.groupby.SeriesGroupBy.is_monotonic_increasing SA01" \
107
106
-i " pandas.core.groupby.SeriesGroupBy.nth PR02" \
108
107
-i " pandas.core.groupby.SeriesGroupBy.plot PR02" \
109
108
-i " pandas.core.groupby.SeriesGroupBy.sem SA01" \
110
109
-i " pandas.core.resample.Resampler.get_group RT03,SA01" \
111
- -i " pandas.core.resample.Resampler.groups SA01" \
112
110
-i " pandas.core.resample.Resampler.indices SA01" \
113
111
-i " pandas.core.resample.Resampler.max PR01,RT03,SA01" \
114
112
-i " pandas.core.resample.Resampler.mean SA01" \
Original file line number Diff line number Diff line change @@ -442,10 +442,12 @@ def groups(self) -> dict[Hashable, Index]:
442
442
443
443
See Also
444
444
--------
445
- core.groupby.DataFrameGroupBy.get_group : Get a DataFrame or Series that
446
- contains the rows belonging to the specified group.
447
- core.groupby.DataFrameGroupBy.indices : Get a dict with group labels as keys
448
- and lists of integer indices of rows in each group as values.
445
+ core.groupby.DataFrameGroupBy.get_group : Retrieve group from a
446
+ ``DataFrameGroupBy`` object with provided name.
447
+ core.groupby.SeriesGroupBy.get_group : Retrieve group from a
448
+ ``SeriesGroupBy`` object with provided name.
449
+ core.resample.Resampler.get_group : Retrieve group from a
450
+ ``Resampler`` object with provided name.
449
451
450
452
Examples
451
453
--------
You can’t perform that action at this time.
0 commit comments