@@ -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 :
239
+ Aggregate using callable, string, dict, or list of string/callables
240
+ DataFrame.resample.transform :
241
+ Transforms the Series on each group based on the given function.
242
+ DataFrame.aggregate:
243
+ Aggregate using one or more operations over the specified axis.
241
244
"""
242
245
)
243
246
@@ -917,9 +920,11 @@ def quantile(self, q=0.5, **kwargs):
917
920
Series.quantile
918
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