[PATCH 01/10] btt_plot.py: Use sum() instead of open-coding it to compute list average

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Signed-off-by: Vincent Legoll <vincent.legoll@xxxxxxxxx>
---
 btt/btt_plot.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/btt/btt_plot.py b/btt/btt_plot.py
index 76fcca8..9c6f207 100755
--- a/btt/btt_plot.py
+++ b/btt/btt_plot.py
@@ -125,10 +125,7 @@ def get_data(files):
 		def _avg(vals):
 			"""Computes average for array of values passed"""
 
-			total = 0.0
-			for val in vals:
-				total += val
-			return total / len(vals)
+			return sum(vals) / len(vals)
 
 		#------------------------------------------------------
 		if len(xs) < 1000:
-- 
2.20.1




[Index of Archives]     [Netdev]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux