@@ -131,7 +131,7 @@ def __iter__(self):
131
131
132
132
See Also
133
133
--------
134
- GroupBy.__iter__ : Generator yielding sequence of (name, subset object) for each group
134
+ GroupBy.__iter__ : Generator yielding sequence for each group.
135
135
"""
136
136
self ._set_binner ()
137
137
return super ().__iter__ ()
@@ -235,9 +235,12 @@ def pipe(self, func, *args, **kwargs):
235
235
"""
236
236
See Also
237
237
--------
238
- DataFrame.groupby.aggregate : Aggregate using callable, string, dict, or list of string/callables
239
- DataFrame.resample.transform : Transforms the Series on each group based on the given function.
240
- DataFrame.aggregate: Aggregate using one or more operations over the specified axis.
238
+ DataFrame.groupby.aggregate : Aggregate using callable, string, dict,
239
+ or list of string/callables.
240
+ DataFrame.resample.transform : Transforms the Series on each group
241
+ based on the given function.
242
+ DataFrame.aggregate: Aggregate using one or more
243
+ operations over the specified axis.
241
244
"""
242
245
)
243
246
@@ -915,11 +918,13 @@ def quantile(self, q=0.5, **kwargs):
915
918
See Also
916
919
--------
917
920
Series.quantile
918
- Return a series, where the index is q and the values are the quantiles
921
+ Return a series, where the index is q and the values are the quantiles.
919
922
DataFrame.quantile
920
- Return a DataFrame, where the columns are the columns of self, and the values are the quantiles.
923
+ Return a DataFrame, where the columns are the columns of self,
924
+ and the values are the quantiles.
921
925
DataFrameGroupBy.quantile
922
- Return a DataFrame, where the coulmns are groupby columns, and the values are its quantiles.
926
+ Return a DataFrame, where the coulmns are groupby columns,
927
+ and the values are its quantiles.
923
928
"""
924
929
return self ._downsample ("quantile" , q = q , ** kwargs )
925
930
0 commit comments