Re: [matplotlib-devel] log in hist() and toggling

2008-06-02 Thread Manuel Metz
John Hunter wrote: > On Sat, May 24, 2008 at 6:02 PM, Olle Engdegård <[EMAIL PROTECTED]> wrote: > >> I very much miss the 'l' shortcut for toggling log/lin y-scale in the >> trunk! I use it a lot. >> >> I suggest restoring it with something like >> >> if self.get_yscale() is ("log" or "linear"): >

Re: [matplotlib-devel] log in hist() and toggling

2008-05-27 Thread Michael Droettboom
Should be working now on the trunk. The line transformation wasn't getting invalidated when the scale changed. Cheers, Mike John Hunter wrote: > On Sat, May 24, 2008 at 6:02 PM, Olle Engdegård <[EMAIL PROTECTED]> wrote: > > >> I very much miss the 'l' shortcut for toggling log/lin y-scale in

Re: [matplotlib-devel] log in hist() and toggling

2008-05-24 Thread John Hunter
On Sat, May 24, 2008 at 6:02 PM, Olle Engdegård <[EMAIL PROTECTED]> wrote: > I very much miss the 'l' shortcut for toggling log/lin y-scale in the > trunk! I use it a lot. > > I suggest restoring it with something like > > if self.get_yscale() is ("log" or "linear"): >self.toggle_log_lineary()

[matplotlib-devel] log in hist() and toggling

2008-05-24 Thread Olle Engdegård
Hi, I very much miss the 'l' shortcut for toggling log/lin y-scale in the trunk! I use it a lot. I suggest restoring it with something like if self.get_yscale() is ("log" or "linear"): self.toggle_log_lineary() else: pass I think most of time most people use log or linear scales. The new