Skip to content
Snippets Groups Projects
Commit d436eabf authored by Bert Palm's avatar Bert Palm 🎇 Committed by Peter Lünenschloß
Browse files

Apply 1 suggestion(s) to 1 file(s)

parent 7b4248e3
No related branches found
No related tags found
1 merge request!424Cross statistics fixes
Pipeline #71409 failed with stage
in 1 minute and 10 seconds
......@@ -1421,8 +1421,7 @@ def flagCrossStatistics(
return data, flags
for f in fields:
set_mask = pd.Series(False, index=flags[f].index)
set_mask[mask[f][mask[f]].index] = True
flags[set_mask, f] = flag
m = mask.reindex(index=flags[f].index, fill_value=False)
flags[m, f] = flag
return data, 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