]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blobdiff - stridetune-graph.py
zfec: rearrange files
[tahoe-lafs/zfec.git] / stridetune-graph.py
diff --git a/stridetune-graph.py b/stridetune-graph.py
new file mode 100755 (executable)
index 0000000..7025989
--- /dev/null
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+
+from pyx import *
+def g(f):
+ g=graph.graphxy(width=16, x=graph.axis.linear(), y=graph.axis.linear())
+
+ g.plot([graph.data.file(f, x=1, y=2)])
+ g.writeEPSfile(f+'.eps')
+
+g('stridetune.dat')