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

...

parent c0d6bf54
No related branches found
No related tags found
3 merge requests!271Static expansion of regular expressions,!260Follow-Up Translations,!237Flagger Translations
......@@ -405,7 +405,9 @@ def mergeHistoryByFunc(flags: Flags, field, source, merge_func, merge_func_kws,
target_history = flags.history[field]
source_history = flags.history[source]
new_target_history = History()
for k in target_history.columns:
import pdb
pdb.set_trace()
for k in target_history.hist.columns:
col_args_h = dict(source_col=source_history.hist[k])
col_args_m = dict(source_col=source_history.mask[k])
col_args_h.update(merge_func_kws)
......
......@@ -54,7 +54,9 @@ def test_harmSingleVarIntermediateFlagging(data, flagger, reshaper):
field = data.columns[0]
data, flagger = linear(data, "data", flagger, freq)
# flag something bad
flagger = flagger.setFlags("data", loc=data[field].index[3:4])
f_ser = pd.Series(data=[-np.inf] * len(data[field]), index=data[field].index)
f_ser[3:4] = BAD
flagger[field] = f_ser
data, flagger = mapToOriginal(data, "data", flagger, method="inverse_" + reshaper)
d = data[field]
if reshaper == "nagg":
......
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