Skip to content

Instantly share code, notes, and snippets.

@akira093
Created November 6, 2012 04:32
Show Gist options
  • Save akira093/4022559 to your computer and use it in GitHub Desktop.
Save akira093/4022559 to your computer and use it in GitHub Desktop.
import pylab
import sys
#arg = sys.argv[1]
arg = "c"
l = pylab.loadtxt("arg"+".csv",delimiter=",",skiprows=1)
l = l.T
pylab.plot(l[0],l[1])
pylab.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment