@@ -7378,18 +7378,20 @@ def resample(self, rule, how=None, axis=0, fill_method=None, closed=None,
7378
7378
rule : string
7379
7379
The offset string or object representing target conversion.
7380
7380
how : string
7381
- Method for down- or re-sampling, default to ‘mean’ for downsampling.
7381
+ Method for down-/ re-sampling, default to ‘mean’ for downsampling.
7382
7382
7383
7383
.. deprecated:: 0.18.0
7384
- The new syntax is .resample(...).mean(), or .resample(...).apply(<func>)
7384
+ The new syntax is .resample(...).mean(), or
7385
+ .resample(...).apply(<func>)
7385
7386
axis : int, optional, default 0
7386
- Which index to use for up- or down-sampling. Must be ``DatetimeIndex``,
7387
- ``TimedeltaIndex`` or ``PeriodIndex``.
7387
+ Which index to use for up- or down-sampling. Must be
7388
+ ``DatetimeIndex``, `` TimedeltaIndex`` or ``PeriodIndex``.
7388
7389
fill_method : string, default None
7389
7390
Filling method for upsampling.
7390
7391
7391
7392
.. deprecated:: 0.18.0
7392
- The new syntax is .resample(...).<func>(), e.g. .resample(...).pad()
7393
+ The new syntax is .resample(...).<func>(),
7394
+ e.g. .resample(...).pad()
7393
7395
closed : {'right', 'left'}
7394
7396
Which side of bin interval is closed. The default is 'left'
7395
7397
for all frequency offsets except for 'M', 'A', 'Q', 'BM',
0 commit comments