I want to thank you all for this huge amount of answers I found here since I began working with python and matplotlib.

I have a quite specific quesiton, now. I'd like to create a plot of colour-coded data as a subplot using pcolor() and a plot_date() subplot of an other dataset beneath. The period of time is the same, so the ticks have to be straight among each other. But because of the colorbar the width of both x-axis differ. Is there a way to squeeze the plot_date()-axis or another option I didn't noticed?

link|improve this question
Welcome to StackOverflow! If HYRY's answer is correct, please mark it "accepted" (meta.stackoverflow.com/questions/5234/…;. – Jouni K. Seppänen Feb 19 at 6:18
feedback

1 Answer

you can create a horizontal colorbar by pl.colorbar(orientation="horizontal"). So the width of axes created by pcolor() and plot_date() are the same.

link|improve this answer
Thanks, it works fine! – BiegisBota Feb 17 at 14:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.