Skip to content

Commit a27ba81

Browse files
author
y-p
committed
DOC: update docstring of ts.resample with missing arguments GH2861
1 parent d88d76e commit a27ba81

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pandas/core/generic.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,15 +212,18 @@ def resample(self, rule, how=None, axis=0, fill_method=None,
212212
rule : the offset string or object representing target conversion
213213
how : string, method for down- or re-sampling, default to 'mean' for
214214
downsampling
215-
fill_method : string, fill_method for upsampling, default None
216215
axis : int, optional, default 0
216+
fill_method : string, fill_method for upsampling, default None
217217
closed : {'right', 'left'}, default None
218218
Which side of bin interval is closed
219219
label : {'right', 'left'}, default None
220220
Which bin edge label to label bucket with
221221
convention : {'start', 'end', 's', 'e'}
222-
loffset : timedelta
222+
kind: "period"/"timestamp"
223+
loffset: timedelta
223224
Adjust the resampled time labels
225+
limit: int, default None
226+
Maximum size gap to when reindexing with fill_method
224227
base : int, default 0
225228
For frequencies that evenly subdivide 1 day, the "origin" of the
226229
aggregated intervals. For example, for '5min' frequency, base could

0 commit comments

Comments
 (0)