Skip to content

Commit 56b3d0c

Browse files
committed
fixing docstring for SeriesGroupBy.indices
1 parent 54c73da commit 56b3d0c

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

ci/code_checks.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
9494
-i "pandas.core.groupby.DataFrameGroupBy.plot PR02" \
9595
-i "pandas.core.groupby.DataFrameGroupBy.sem SA01" \
9696
-i "pandas.core.groupby.SeriesGroupBy.get_group RT03,SA01" \
97-
-i "pandas.core.groupby.SeriesGroupBy.indices SA01" \
9897
-i "pandas.core.groupby.SeriesGroupBy.sem SA01" \
9998
-i "pandas.core.resample.Resampler.get_group RT03,SA01" \
10099
-i "pandas.core.resample.Resampler.indices SA01" \

pandas/core/groupby/groupby.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,15 @@ def indices(self) -> dict[Hashable, npt.NDArray[np.intp]]:
515515
"""
516516
Dict {group name -> group indices}.
517517
518+
See Also
519+
--------
520+
core.groupby.DataFrameGroupBy.indices : Provides a mapping of group names
521+
to positions of the elements in object.
522+
core.resample.Resampler.indices : Provides a mapping of group names
523+
to positions of the elements in object.
524+
core.resample.Resampler.indices : Provides a mapping of group names
525+
to positions of the elements in object.
526+
518527
Examples
519528
--------
520529

0 commit comments

Comments
 (0)