|
From: lkz2366 <ac...@sa...> - 2013-02-27 23:13:30
|
Ok, I finally got it working after a couple of hours of experimenting. I
couldn't figure out how to get your methods to work, maybe because I'm such
a novice at Python. But, it was as easy as using a simple 'for' loop.
num = the number of lists to plot
time = a list of lists
volts = a list of lists
figure()
for x in range(0,num):
plot(time[x],volt[x])
show()
<http://matplotlib.1069221.n5.nabble.com/file/n40498/screenshot.png>
--
View this message in context: http://matplotlib.1069221.n5.nabble.com/Multiple-XY-plots-tp40451p40498.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
|