Re: [Matplotlib-users] xticks when using twinx()

2012-03-20 Thread Moore, Eric (NIH/NIDDK) [F]
> -Original Message- > From: Moore, Eric (NIH/NIDDK) [F] > Sent: Monday, March 19, 2012 1:48 PM > To: matplotlib-users > Subject: Re: [Matplotlib-users] xticks when using twinx() > > Mario, > > When you call fig.add_subplot as you are doing, ax1 is None.

Re: [Matplotlib-users] xticks when using twinx()

2012-03-19 Thread Moore, Eric (NIH/NIDDK) [F]
Mario, When you call fig.add_subplot as you are doing, ax1 is None. I'm not sure why, but you don't need to set the xticks there anyway. Change your call to be ax1 = fig.add_subplot(111) that way ax1 != None. Then plot, create ax2, plot. You can then set the xticks by calling ax1.set_xticks