@@ -7377,8 +7377,19 @@ def resample(self, rule, how=None, axis=0, fill_method=None, closed=None,
7377
7377
----------
7378
7378
rule : string
7379
7379
The offset string or object representing target conversion.
7380
+ how : string
7381
+ Method for down- or re-sampling, default to ‘mean’ for downsampling.
7382
+
7383
+ .. deprecated:: 0.18.0
7384
+ The new syntax is .resample(...).mean(), or .resample(...).apply(<func>)
7380
7385
axis : int, optional, default 0
7381
-
7386
+ Which index to use for up- or down-sampling. Must be ``DatetimeIndex``,
7387
+ ``TimedeltaIndex`` or ``PeriodIndex``.
7388
+ fill_method : string, default None
7389
+ Filling method for upsampling.
7390
+
7391
+ .. deprecated:: 0.18.0
7392
+ The new syntax is .resample(...).<func>(), e.g. .resample(...).pad()
7382
7393
closed : {'right', 'left'}
7383
7394
Which side of bin interval is closed. The default is 'left'
7384
7395
for all frequency offsets except for 'M', 'A', 'Q', 'BM',
@@ -7396,6 +7407,10 @@ def resample(self, rule, how=None, axis=0, fill_method=None, closed=None,
7396
7407
By default the input representation is retained.
7397
7408
loffset : timedelta
7398
7409
Adjust the resampled time labels.
7410
+ limit : int, default None
7411
+ Maximum size gap when reindexing with ``fill_method``.
7412
+
7413
+ .. deprecated:: 0.18.0
7399
7414
base : int, default 0
7400
7415
For frequencies that evenly subdivide 1 day, the "origin" of the
7401
7416
aggregated intervals. For example, for '5min' frequency, base could
0 commit comments