Skip to content

Commit 8d2ca0b

Browse files
DOC: fix RT03,SA01,ES01 for pandas.core.resample.Resampler.__iter__ (#60033)
1 parent 6d4ba80 commit 8d2ca0b

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

ci/code_checks.sh

-3
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
9797
-i "pandas.arrays.NumpyExtensionArray SA01" \
9898
-i "pandas.arrays.SparseArray PR07,SA01" \
9999
-i "pandas.arrays.TimedeltaArray PR07,SA01" \
100-
-i "pandas.core.groupby.DataFrameGroupBy.__iter__ RT03,SA01" \
101100
-i "pandas.core.groupby.DataFrameGroupBy.boxplot PR07,RT03,SA01" \
102101
-i "pandas.core.groupby.DataFrameGroupBy.get_group RT03,SA01" \
103102
-i "pandas.core.groupby.DataFrameGroupBy.groups SA01" \
@@ -106,7 +105,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
106105
-i "pandas.core.groupby.DataFrameGroupBy.nunique SA01" \
107106
-i "pandas.core.groupby.DataFrameGroupBy.plot PR02" \
108107
-i "pandas.core.groupby.DataFrameGroupBy.sem SA01" \
109-
-i "pandas.core.groupby.SeriesGroupBy.__iter__ RT03,SA01" \
110108
-i "pandas.core.groupby.SeriesGroupBy.get_group RT03,SA01" \
111109
-i "pandas.core.groupby.SeriesGroupBy.groups SA01" \
112110
-i "pandas.core.groupby.SeriesGroupBy.indices SA01" \
@@ -115,7 +113,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
115113
-i "pandas.core.groupby.SeriesGroupBy.nth PR02" \
116114
-i "pandas.core.groupby.SeriesGroupBy.plot PR02" \
117115
-i "pandas.core.groupby.SeriesGroupBy.sem SA01" \
118-
-i "pandas.core.resample.Resampler.__iter__ RT03,SA01" \
119116
-i "pandas.core.resample.Resampler.get_group RT03,SA01" \
120117
-i "pandas.core.resample.Resampler.groups SA01" \
121118
-i "pandas.core.resample.Resampler.indices SA01" \

pandas/core/groupby/groupby.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -767,10 +767,24 @@ def __iter__(self) -> Iterator[tuple[Hashable, NDFrameT]]:
767767
"""
768768
Groupby iterator.
769769
770+
This method provides an iterator over the groups created by the ``resample``
771+
or ``groupby`` operation on the object. The method yields tuples where
772+
the first element is the label (group key) corresponding to each group or
773+
resampled bin, and the second element is the subset of the data that falls
774+
within that group or bin.
775+
770776
Returns
771777
-------
772-
Generator yielding sequence of (name, subsetted object)
773-
for each group
778+
Iterator
779+
Generator yielding a sequence of (name, subsetted object)
780+
for each group.
781+
782+
See Also
783+
--------
784+
Series.groupby : Group data by a specific key or column.
785+
DataFrame.groupby : Group DataFrame using mapper or by columns.
786+
DataFrame.resample : Resample a DataFrame.
787+
Series.resample : Resample a Series.
774788
775789
Examples
776790
--------

0 commit comments

Comments
 (0)