@@ -119,7 +119,7 @@ def __iter__(self):
119
119
120
120
See Also
121
121
--------
122
- GroupBy.__iter__
122
+ GroupBy.__iter__ : Groupby iterator.
123
123
"""
124
124
self ._set_binner ()
125
125
return super ().__iter__ ()
@@ -224,9 +224,10 @@ def pipe(self, func, *args, **kwargs):
224
224
"""
225
225
See Also
226
226
--------
227
- DataFrame.groupby.aggregate
228
- DataFrame.resample.transform
229
- DataFrame.aggregate
227
+ DataFrame.groupby.aggregate : Aggregate using callable, string, dict, or list of string/callables
228
+ DataFrame.resample.transform : Call function producing a like-indexed Series on each group and return a
229
+ Series with the transformed values.
230
+ DataFrame.aggregate : Aggregate using one or more operations over the specified axis.
230
231
"""
231
232
)
232
233
@@ -432,8 +433,8 @@ def pad(self, limit=None):
432
433
433
434
See Also
434
435
--------
435
- Series.fillna
436
- DataFrame.fillna
436
+ Series.fillna : Fill NA/NaN values using the specified method in a Series.
437
+ DataFrame.fillna : Fill NA/NaN values using the specified method in a DataFrame.
437
438
"""
438
439
return self ._upsample ("pad" , limit = limit )
439
440
@@ -812,8 +813,8 @@ def asfreq(self, fill_value=None):
812
813
813
814
See Also
814
815
--------
815
- Series.asfreq
816
- DataFrame.asfreq
816
+ Series.asfreq : Convert TimeSeries to specified frequency in a Series.
817
+ DataFrame.asfreq : Convert TimeSeries to specified frequency in a DataFrame.
817
818
"""
818
819
return self ._upsample ("asfreq" , fill_value = fill_value )
819
820
@@ -879,9 +880,9 @@ def quantile(self, q=0.5, **kwargs):
879
880
880
881
See Also
881
882
--------
882
- Series.quantile
883
- DataFrame.quantile
884
- DataFrameGroupBy.quantile
883
+ Series.quantile : Return value at the given quantile.
884
+ DataFrame.quantile : Return values at the given quantile over requested axis.
885
+ DataFrameGroupBy.quantile : Return group values at the given quantile, a la numpy.percentile.
885
886
"""
886
887
return self ._downsample ("quantile" , q = q , ** kwargs )
887
888
0 commit comments