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

vorzeichenfehler

parent c4cadd36
No related branches found
No related tags found
No related merge requests found
......@@ -103,7 +103,7 @@ def roll(data, field, flagger, winsz, func=np.mean, eval_flags=True, min_periods
means = to_fit.rolling(window=winsz, center=center, closed="both").apply(func)
if _return_residues:
means = means - to_fit
means = to_fit - means
data[field] = means
if eval_flags:
......
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