Re: [Matplotlib-users] "Stacked" subplots

2006-09-14 Thread PGM
- axes (understand, subplot) have a "is_last_row" method you can use that to draw ticks on the bottom axis only - for the legend, try to use the "legend" command of the figure (something like gcf().legend() - Using Tomcat bu

Re: [Matplotlib-users] "Stacked" subplots

2006-09-14 Thread David Huard
Hi,To remove the ticklabels, you could do it with something like[ax.xaxis.set_ticklabels([]) for ax in f.axes[:-1]]David2006/9/14, Jose Gomez-Dans < [EMAIL PROTECTED]>:Hi!I am coding a little application that shows a number of subplots (of the 511, 512...515 type) stacked up. They all have the same

[Matplotlib-users] "Stacked" subplots

2006-09-14 Thread Jose Gomez-Dans
Hi! I am coding a little application that shows a number of subplots (of the 511, 512...515 type) stacked up. They all have the same x-axis, and I want them to only have the xticks labels on the downward most axes. The subplots are defined in a matplotlib.figure.Figure object, and have been created