to github
[svn42.git] / dart / plot.py
diff --git a/dart/plot.py b/dart/plot.py
deleted file mode 100755 (executable)
index d427488..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-
-import fileinput
-import numpy
-import pylab
-labels=[];
-for line in fileinput.input():
-  (label,foo,datastr)=line.partition(":")
-  labels.append(label)
-  data = numpy.array(datastr.split(","))
-  pylab.plot(range(len(data)),data,label=label)
-  pylab.hold(True)
-
-pylab.legend()
-pylab.show()
-