File tree 2 files changed +9
-3
lines changed
2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -89,16 +89,13 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
89
89
-i " pandas.arrays.TimedeltaArray PR07,SA01" \
90
90
-i " pandas.core.groupby.DataFrameGroupBy.boxplot PR07,RT03,SA01" \
91
91
-i " pandas.core.groupby.DataFrameGroupBy.get_group RT03,SA01" \
92
- -i " pandas.core.groupby.DataFrameGroupBy.indices SA01" \
93
92
-i " pandas.core.groupby.DataFrameGroupBy.nunique SA01" \
94
93
-i " pandas.core.groupby.DataFrameGroupBy.plot PR02" \
95
94
-i " pandas.core.groupby.DataFrameGroupBy.sem SA01" \
96
95
-i " pandas.core.groupby.SeriesGroupBy.get_group RT03,SA01" \
97
- -i " pandas.core.groupby.SeriesGroupBy.indices SA01" \
98
96
-i " pandas.core.groupby.SeriesGroupBy.plot PR02" \
99
97
-i " pandas.core.groupby.SeriesGroupBy.sem SA01" \
100
98
-i " pandas.core.resample.Resampler.get_group RT03,SA01" \
101
- -i " pandas.core.resample.Resampler.indices SA01" \
102
99
-i " pandas.core.resample.Resampler.max PR01,RT03,SA01" \
103
100
-i " pandas.core.resample.Resampler.mean SA01" \
104
101
-i " pandas.core.resample.Resampler.min PR01,RT03,SA01" \
Original file line number Diff line number Diff line change @@ -515,6 +515,15 @@ def indices(self) -> dict[Hashable, npt.NDArray[np.intp]]:
515
515
"""
516
516
Dict {group name -> group indices}.
517
517
518
+ See Also
519
+ --------
520
+ core.groupby.DataFrameGroupBy.indices : Provides a mapping of group rows to
521
+ positions of the elements.
522
+ core.groupby.SeriesGroupBy.indices : Provides a mapping of group rows to
523
+ positions of the elements.
524
+ core.resample.Resampler.indices : Provides a mapping of group rows to
525
+ positions of the elements.
526
+
518
527
Examples
519
528
--------
520
529
You can’t perform that action at this time.
0 commit comments