@@ -131,7 +131,7 @@ def __iter__(self):
131
131
132
132
See Also
133
133
--------
134
- GroupBy.__iter__
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
239
- DataFrame.resample.transform
240
- DataFrame.aggregate
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
@@ -454,8 +457,8 @@ def pad(self, limit=None):
454
457
455
458
See Also
456
459
--------
457
- Series.fillna
458
- DataFrame.fillna
460
+ Series.fillna: Fill NA/NaN values using the specified method.
461
+ DataFrame.fillna: Fill NA/NaN values using the specified method.
459
462
"""
460
463
return self ._upsample ("pad" , limit = limit )
461
464
@@ -829,8 +832,8 @@ def asfreq(self, fill_value=None):
829
832
830
833
See Also
831
834
--------
832
- Series.asfreq
833
- DataFrame.asfreq
835
+ Series.asfreq: Convert TimeSeries to specified frequency.
836
+ DataFrame.asfreq: Convert TimeSeries to specified frequency.
834
837
"""
835
838
return self ._upsample ("asfreq" , fill_value = fill_value )
836
839
@@ -916,8 +919,13 @@ def quantile(self, q=0.5, **kwargs):
916
919
See Also
917
920
--------
918
921
Series.quantile
922
+ Return a series, where the index is q and the values are the quantiles.
919
923
DataFrame.quantile
924
+ Return a DataFrame, where the columns are the columns of self,
925
+ and the values are the quantiles.
920
926
DataFrameGroupBy.quantile
927
+ Return a DataFrame, where the coulmns are groupby columns,
928
+ and the values are its quantiles.
921
929
"""
922
930
return self ._downsample ("quantile" , q = q , ** kwargs )
923
931
@@ -1073,7 +1081,7 @@ def _upsample(self, method, limit=None, fill_value=None):
1073
1081
1074
1082
See Also
1075
1083
--------
1076
- .fillna
1084
+ .fillna: Fill NA/NaN values using the specified method.
1077
1085
1078
1086
"""
1079
1087
self ._set_binner ()
@@ -1209,7 +1217,7 @@ def _upsample(self, method, limit=None, fill_value=None):
1209
1217
1210
1218
See Also
1211
1219
--------
1212
- .fillna
1220
+ .fillna: Fill NA/NaN values using the specified method.
1213
1221
1214
1222
"""
1215
1223
# we may need to actually resample as if we are timestamps
0 commit comments