2 import matplotlib.pyplot
as plt
5 filename =
"scratch/configuration.confinstantaneousAgingReport.txt" 6 if (len(sys.argv) > 1):
9 with open(filename)
as f:
16 entry = line.split(
":")
17 time.append(float(entry[0]))
18 inst.append(float(entry[1]))
20 cumul.append(float(entry[1]))
22 cumul.append(cumul[len(cumul)-1] + float(entry[1]))
73 print cumul[len(cumul)-1]