Skip to content
Snippets Groups Projects
Commit b2d81892 authored by Matthew David Pitkin's avatar Matthew David Pitkin Committed by Moritz
Browse files

Append combined to the result label for the combined samples

parent 2e6bd95d
No related branches found
No related tags found
1 merge request!459Combining results
......@@ -1288,6 +1288,10 @@ class ResultList(object):
# get first result
result = deepcopy(self.results[0])
# append 'combined' to the label
if result.label is not None:
result.label += 'combined'
# check all results are equivalent
sampler = result.sampler
if not np.all([res.sampler == sampler for res in self]):
......
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