Script execution
This commit is contained in:
+4
-4
@@ -12,10 +12,10 @@ class all_statistics_data (object):
|
||||
m10 = statistics_data()
|
||||
|
||||
def return_string(self):
|
||||
print "Statistics:\t\t\t\tmin\tmean\tmax\tstdev"
|
||||
print "Saturation :" + str(self.sat.min)[:6] + "\t" + str(self.sat.mean)[:6] + "\t" + str(self.sat.max)[:6] + "\t" + str(self.sat.stdev)[:6]
|
||||
print "5% out of sat :" + str(self.m5.min)[:6] + "\t" + str(self.m5.mean)[:6] + "\t" + str(self.m5.max)[:6] + "\t" + str(self.m5.stdev)[:6]
|
||||
print "10% out of sat:" + str(self.m10.min)[:6] + "\t" + str(self.m10.mean)[:6] + "\t" + str(self.m10.max)[:6] + "\t" + str(self.m10.stdev)[:6]
|
||||
print "Statistics:\t\tmin\tmean\tmax\tstdev"
|
||||
print "Saturation :\t" + str(self.sat.min)[:6] + "\t" + str(self.sat.mean)[:6] + "\t" + str(self.sat.max)[:6] + "\t" + str(self.sat.stdev)[:6]
|
||||
print "5% out of sat :\t" + str(self.m5.min)[:6] + "\t" + str(self.m5.mean)[:6] + "\t" + str(self.m5.max)[:6] + "\t" + str(self.m5.stdev)[:6]
|
||||
print "10% out of sat:\t" + str(self.m10.min)[:6] + "\t" + str(self.m10.mean)[:6] + "\t" + str(self.m10.max)[:6] + "\t" + str(self.m10.stdev)[:6]
|
||||
|
||||
|
||||
def statistics_calc(data_in):
|
||||
|
||||
Reference in New Issue
Block a user