]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/blob - zfec/stridetune-graph.py
stick a .gitignore file
[tahoe-lafs/zfec.git] / zfec / stridetune-graph.py
1 #!/usr/bin/env python
2
3 from pyx import *
4 def g(f):
5  g=graph.graphxy(width=16, x=graph.axis.linear(), y=graph.axis.linear())
6
7  g.plot([graph.data.file(f, x=1, y=2)])
8  g.writeEPSfile(f+'.eps')
9
10 g('stridetune.dat')