diff --git a/DAS/visualizer.py b/DAS/visualizer.py index c237a95..0d72a94 100644 --- a/DAS/visualizer.py +++ b/DAS/visualizer.py @@ -99,7 +99,6 @@ class Visualizer: """Create a new key with the other items in the tuple""" if item.startswith('run_'): newKey = tuple([x for x in key if x != item]) - print(newKey) """Average the similar key values""" total = [0] * len(data[key]['ttas']) for i in range(runs): @@ -107,7 +106,6 @@ class Visualizer: for cnt, tta in enumerate(data[key0]['ttas']): total[cnt] += tta allTta.append(tta) - print(tta) for i in range(len(total)): total[i] = total[i]/runs averages = {}