diff options
author | Paweł Redman <pawel.redman@gmail.com> | 2019-07-12 21:04:14 +0200 |
---|---|---|
committer | Paweł Redman <pawel.redman@gmail.com> | 2019-07-12 21:04:14 +0200 |
commit | d6a537092f10ad0c7e850feab44e462ac66c6aa8 (patch) | |
tree | bc03dc1bb1165afb2f4e6a5268aedadcd1656e8a | |
parent | f8c0cc54675538fe3c7dab16ad30de2b17593468 (diff) |
Remove garbage from reports
-rwxr-xr-x | stalinizer.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/stalinizer.py b/stalinizer.py index 1c6503f..411a695 100755 --- a/stalinizer.py +++ b/stalinizer.py @@ -118,10 +118,6 @@ class WeightedMean: N = len(self.samples) wsd = (S / ((N - 1) / N * self.weights)) ** 0.5; - for sample in self.samples: - print("%d\t%d" % (sample[0], sample[1])) - print("wsd is %f" % wsd) - return wsd # standard deviation of the weighted mean |