Closed
Description
Reference docs (see: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.resample.html):
- Add to docs the list of options that can be passed to
fill_method
. Some of which arepad
,bfill
,ffill
.
-- The list seems to be documented for themethod
onfillna
: http://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.fillna.html#pandas.DataFrame.fillna - The
convention
parameter is not well documented. It is unclear what the values ofend
orstart
means (and the associated aliases). (Resample convention='start' not functioning properly #15432 is dupe), PR DOC: document convention argument for resample() #16965 - The
kind
parameters is also unclear. The best I could get from it was a infinite stack recursion: Series.resample leads to RuntimeError: maximum recursion depth exceeded while calling a Python object #5026. (DOC: Add information on kind parameter to resample docstring #19084) -
how
can also be a function or list of functions, not only a string - for the
closed
andlabel
keywords, I think it could be explained which are default in which cases (which is not always the same). In every case, thatlabel='right'
is default as stated in the docs (http://pandas.pydata.org/pandas-docs/dev/timeseries.html#up-and-downsampling) is not true. - A list of all available methods for
how
Tutorial docs:
- example using custom
how
function - example showing how to use
base