From 4f1f107d7c72d8cecbf8901eec2ebbb1d64b1bd1 Mon Sep 17 00:00:00 2001 From: kalt_r Date: Fri, 1 Jul 2016 09:48:18 +0200 Subject: [PATCH] Script execution --- script/KR84_test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/KR84_test.py b/script/KR84_test.py index ed830ac..5ac4d94 100644 --- a/script/KR84_test.py +++ b/script/KR84_test.py @@ -13,9 +13,9 @@ class all_statistics_data (object): def return_string(self): print "Statistics:\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] + print "Saturation :\t" + str(self.sat.min)[:7] + "\t" + str(self.sat.mean)[:7] + "\t" + str(self.sat.max)[:7] + "\t" + str(self.sat.stdev)[:7] + print "5% out of sat :\t" + str(self.m5.min)[:7] + "\t" + str(self.m5.mean)[:7] + "\t" + str(self.m5.max)[:7] + "\t" + str(self.m5.stdev)[:7] + print "10% out of sat:\t" + str(self.m10.min)[:7] + "\t" + str(self.m10.mean)[:7] + "\t" + str(self.m10.max)[:7] + "\t" + str(self.m10.stdev)[:7] def statistics_calc(data_in):