From 701c8f58c41110843bb598d7da11c228e56afc83 Mon Sep 17 00:00:00 2001 From: kalt_r Date: Fri, 1 Jul 2016 09:47:21 +0200 Subject: [PATCH] Script execution --- script/KR84_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/KR84_test.py b/script/KR84_test.py index f66e250..ed830ac 100644 --- a/script/KR84_test.py +++ b/script/KR84_test.py @@ -12,7 +12,7 @@ class all_statistics_data (object): m10 = statistics_data() def return_string(self): - print "Statistics:\t\tmin\tmean\tmax\tstdev" + 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]