Skip to content
Snippets Groups Projects
Commit 6aeb0d34 authored by Peter Lünenschloß's avatar Peter Lünenschloß
Browse files

added automatic built in method invoking to customRolling

parent 0b414cb2
No related branches found
No related tags found
3 merge requests!193Release 1.4,!188Release 1.4,!138WIP: Detect and reset offset
Pipeline #8182 passed with stage
in 6 minutes and 15 seconds
...@@ -410,7 +410,8 @@ def customRolling(to_roll, winsz, func, roll_mask, min_periods=1, center=False, ...@@ -410,7 +410,8 @@ def customRolling(to_roll, winsz, func, roll_mask, min_periods=1, center=False,
winsz : {int, str} winsz : {int, str}
Gets passed on to the window-size parameter of pandas.Rolling. Gets passed on to the window-size parameter of pandas.Rolling.
func : Callable func : Callable
Function to be rolled with. Function to be rolled with. If the funcname matches a .rolling attribute,
the associated method of .rolling will be used instead of .apply(func) (=faster)
roll_mask : numpy.array[bool] roll_mask : numpy.array[bool]
A mask, indicating the rolling windows, `func` shall be applied on. A mask, indicating the rolling windows, `func` shall be applied on.
Has to be of same length as `to_roll`. Has to be of same length as `to_roll`.
...@@ -456,10 +457,15 @@ def customRolling(to_roll, winsz, func, roll_mask, min_periods=1, center=False, ...@@ -456,10 +457,15 @@ def customRolling(to_roll, winsz, func, roll_mask, min_periods=1, center=False,
center=center, center=center,
closed=closed) closed=closed)
i_roll = i_roll.rolling(indexer, i_roller = i_roll.rolling(indexer,
min_periods=min_periods, min_periods=min_periods,
center=center, center=center,
closed=closed).apply(func, raw=raw, engine=engine) closed=closed)
if hasattr(i_roller, func.__name__):
i_roll = getattr(i_roller, func.__name__)
else:
i_roll = i_roller.apply(func, raw=raw, engine=engine)
return pd.Series(i_roll.values, index=to_roll.index) return pd.Series(i_roll.values, index=to_roll.index)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment