Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Jul 22, 2016
1 parent c91a531 commit 34d36d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/tabplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
table = [ row for row in table if len(row) ] ## remove empty rows
if len(table[0]) == 1 :
pyplot.plot( [y[0] for y in table ] )
for x in xrange(1,len(table[0])):
for x in range(1,len(table[0])):
pyplot.plot( [ y[0] for y in table ], [ y[x] for y in table ] )
pyplot.show()

0 comments on commit 34d36d7

Please sign in to comment.