Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-06-22 Thread Benjamin Root
On Fri, Jun 22, 2012 at 8:55 AM, Michael Droettboom wrote: > > On Thu, Jun 21, 2012 at 12:54 AM, Christopher Graves < > christoph.gra...@gmail.com> wrote: > >> >> Has anyone had a chance to take a look at this very annoying bug with >> using AutoMinorLocator? >> > > > Ok, I proposed a simple bu

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-06-22 Thread Michael Droettboom
On Thu, Jun 21, 2012 at 12:54 AM, Christopher Graves mailto:christoph.gra...@gmail.com>> wrote: Has anyone had a chance to take a look at this very annoying bug with using AutoMinorLocator? Ok, I proposed a simple bug fix at https://github.com/matplotlib/matplotlib/issues/807 How

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-06-21 Thread Christopher Graves
On Tue, Mar 27, 2012 at 3:31 AM, Mike Kaufman wrote: > On 3/26/12 12:49 PM, Christopher Graves wrote: > >> On Sun, Mar 11, 2012 at 2:32 PM, Christopher Graves >> mailto:christoph.gra...@gmail.com>> wrote: >> > > Try this: >> >>from pylab import * >>from matplotlib.ticker i

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-06-20 Thread Christopher Graves
On Tue, Mar 27, 2012 at 3:31 AM, Mike Kaufman wrote: > On 3/26/12 12:49 PM, Christopher Graves wrote: > >> On Sun, Mar 11, 2012 at 2:32 PM, Christopher Graves >> mailto:christoph.gra...@gmail.com>> wrote: >> > > Try this: >> >>from pylab import * >>from matplotlib.ticker i

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-04-12 Thread Christopher Graves
On Thu, Apr 12, 2012 at 5:20 PM, Benjamin Root wrote: > > > On Thu, Mar 29, 2012 at 5:53 AM, Christopher Graves < > christoph.gra...@gmail.com> wrote: > >> >> >> On Tue, Mar 27, 2012 at 3:31 AM, Mike Kaufman wrote: >> >>> On 3/26/12 12:49 PM, Christopher Graves wrote: >>> On Sun, Mar 11, 20

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-04-12 Thread Benjamin Root
On Thu, Mar 29, 2012 at 5:53 AM, Christopher Graves < christoph.gra...@gmail.com> wrote: > > > On Tue, Mar 27, 2012 at 3:31 AM, Mike Kaufman wrote: > >> On 3/26/12 12:49 PM, Christopher Graves wrote: >> >>> On Sun, Mar 11, 2012 at 2:32 PM, Christopher Graves >>> mailto:christoph.gra...@gmail.com>

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-03-29 Thread Christopher Graves
On Tue, Mar 27, 2012 at 3:31 AM, Mike Kaufman wrote: > On 3/26/12 12:49 PM, Christopher Graves wrote: > >> On Sun, Mar 11, 2012 at 2:32 PM, Christopher Graves >> mailto:christoph.gra...@gmail.com>> wrote: >> > > Try this: >> >>from pylab import * >>from matplotlib.ticker i

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-03-26 Thread Mike Kaufman
On 3/26/12 12:49 PM, Christopher Graves wrote: > On Sun, Mar 11, 2012 at 2:32 PM, Christopher Graves > mailto:christoph.gra...@gmail.com>> wrote: > Try this: > > from pylab import * > from matplotlib.ticker import AutoMinorLocator > > clf() > ax=subplot(111)

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-03-26 Thread Christopher Graves
On Sun, Mar 11, 2012 at 2:32 PM, Christopher Graves < christoph.gra...@gmail.com> wrote: > On Sun, Mar 11, 2012 at 2:06 PM, Mike Kaufman wrote: > >> On 3/11/12 8:14 AM, cgraves wrote: >> >>> >>> Hi, here is an example script which places minor ticks with 2 per major >>> tick >>> (minor tick spaci

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-03-11 Thread Christopher Graves
On Sun, Mar 11, 2012 at 2:06 PM, Mike Kaufman wrote: > On 3/11/12 8:14 AM, cgraves wrote: > >> >> Hi, here is an example script which places minor ticks with 2 per major >> tick >> (minor tick spacing is "fractional" of major tick spacing with relative >> interval of 1/2): >> >> from pylab import

Re: [Matplotlib-users] how to maintain fractional minor tick spacing

2012-03-11 Thread Mike Kaufman
On 3/11/12 8:14 AM, cgraves wrote: > > Hi, here is an example script which places minor ticks with 2 per major tick > (minor tick spacing is "fractional" of major tick spacing with relative > interval of 1/2): > > from pylab import * > fig=figure() > ax=subplot(111) > ax.autoscale(tight=True) > plo