Hello,
I'm new in matplotlib, but I have became a fat!
First of all, I have to apologize for my bad English, I hope you can
understand what I mean.
Making some programs I have found the same problem:
-What I want? I want to plot two sets of changing data using the same
windows.
-The problem? My
On Wednesday 28 February 2007 02:59:08 pm Suresh Pillai wrote:
> Ooop, sorry I corrupted the pylab.xticks() line in the second part when
> editing. Should read:
>
> pylab.subplot(211)
> pylab.plot(historicalScore05, label='Score 2005')
> pylab.plot(historialNum05, label='Num 2006')
> pylab.setp(py
import pylab
data1=[1,2,3,4,5,6,7]
data2=[8,9,10,11,12,13,14]
dates=['01','02','03','04','05','06','07']
pylab.subplot(211)
pylab.plot(data1, label='Score 2005')
pylab.plot(data2, label='Num 2006')
pylab.setp(pylab.gca(), xticklabels=[])
pylab.ylabel('Score 2')
pylab.title('Historical Statistics'
Ooop, sorry I corrupted the pylab.xticks() line in the second part when
editing. Should read:
pylab.subplot(211)
pylab.plot(historicalScore05, label='Score 2005')
pylab.plot(historialNum05, label='Num 2006')
pylab.setp(pylab.gca(), xticklabels=[])
pylab.ylabel('Score 2')
pylab.title('Historical
I posed the question below back in Nov, but never received a response.
Thought I'd try again, as I really do need this kind of plot, and I don't
want to leave the world of matplotlib, which has improved my efficiency
greatly in plotting.
Thanks,
Suresh
-- Forwarded message --