Re: [Matplotlib-users] another problem with subplot...

2006-11-03 Thread John Hunter
> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes: Eric> The way axis sharing is implemented, everything is shared; a Eric> single axis object is used for more than one axes object. I Eric> agree that this is not always what one wants, but I think it Eric> would be quite diff

Re: [Matplotlib-users] subplot_adjust bug?

2006-11-03 Thread Eric Firing
Try putting the subplots_adjust call after you have made all your subplots in a given figure. Subplots_adjust operates on a set of axes that are already in the figure--it does not set a parameter to be used later. Eric [EMAIL PROTECTED] wrote: > Hi, > > I have a problem with subplot_adjust bu

Re: [Matplotlib-users] another problem with subplot...

2006-11-03 Thread Eric Firing
[EMAIL PROTECTED] wrote: > and the same question: this behavior is normal? > > fig1 = figure() > ax1 = subplot(121) > xlim([0,10]) > ax2 = subplot(122,sharey=ax1) > yticks([]) > > I would like to hide the ticks label for only one subplot (the one who share > the axes) but I would like to have th