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

interpolateNANs now returns array like of input array size

parent 2580c11c
No related branches found
No related tags found
4 merge requests!193Release 1.4,!188Release 1.4,!49Dataprocessing features,!44Dataprocessing features
......@@ -185,6 +185,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downgrade_interpolatio
chunk_ends = chunk_switches[(chunk_switches.shift(-1) == 1)].index
chunk_bounds = chunk_starts.join(chunk_ends, how="outer", sort=True)
pre_index = data.index
data = data[gap_mask]
if method in ["linear", "time"]:
......@@ -220,6 +221,7 @@ def interpolateNANs(data, method, order=2, inter_limit=2, downgrade_interpolatio
# squeezing the 1-dimensional frame resulting from groupby for consistency reasons
data = data.squeeze(axis=1)
data.name = dat_name
data = data.reindex(pre_index)
if return_chunk_bounds:
return data, chunk_bounds
else:
......
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