summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2015-08-25 23:11:17 +0200
committerFlorian Jung <flo@windfisch.org>2015-08-25 23:11:17 +0200
commitfdb391eff010c424ad8cd680d49e1523946e769e (patch)
tree405102c69cc72563f0f53f1f492287c26d489351
parentb78d6f097f85aa41f384a0f0922c98c58a22c879 (diff)
analyze.py
-rw-r--r--analyze.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/analyze.py b/analyze.py
new file mode 100644
index 0000000..2985ef3
--- /dev/null
+++ b/analyze.py
@@ -0,0 +1,14 @@
+from stats import *
+import sys
+
+if len(sys.argv) >= 2:
+ files = sys.argv[1:]
+else:
+ files = ["stats.pickle"]
+
+
+s = Stats.load(files[0])
+for f in files[1:]:
+ s.merge(f)
+
+s.analyze_speed()