Re: [Matplotlib-users] set_scale and set_xscale

2013-03-29 Thread Benjamin Root
On Thu, Mar 28, 2013 at 12:52 PM, Gökhan Sever gokhanse...@gmail.comwrote: There is no documentation supplied for the first call. Should I file an issue for this on github? Wouldn't hurt. Be sure to include an image showing the result of each command. Ben

Re: [Matplotlib-users] set_scale and set_xscale

2013-03-29 Thread Gökhan Sever
Here it comes - https://github.com/matplotlib/matplotlib/issues/1871 On Fri, Mar 29, 2013 at 6:57 AM, Benjamin Root ben.r...@ou.edu wrote: On Thu, Mar 28, 2013 at 12:52 PM, Gökhan Sever gokhanse...@gmail.com wrote: There is no documentation supplied for the first call. Should I file an

Re: [Matplotlib-users] set_scale and set_xscale

2013-03-28 Thread Gökhan Sever
There is no documentation supplied for the first call. Should I file an issue for this on github? On Wed, Mar 27, 2013 at 7:10 AM, Benjamin Root ben.r...@ou.edu wrote: On Wed, Mar 27, 2013 at 1:03 AM, Gökhan Sever gokhanse...@gmail.com wrote: Hello, Aren't these two log scaling calls

Re: [Matplotlib-users] set_scale and set_xscale

2013-03-27 Thread Benjamin Root
On Wed, Mar 27, 2013 at 1:03 AM, Gökhan Sever gokhanse...@gmail.com wrote: Hello, Aren't these two log scaling calls supposed to be performing the same action? Here is a simple script tested in ipython --pylab fig = plt.figure(figsize=(5, 5)) ax1 = fig.add_subplot(1,1,1)

[Matplotlib-users] set_scale and set_xscale

2013-03-26 Thread Gökhan Sever
Hello, Aren't these two log scaling calls supposed to be performing the same action? Here is a simple script tested in ipython --pylab fig = plt.figure(figsize=(5, 5)) ax1 = fig.add_subplot(1,1,1) ax1.plot(np.random.randn(100)) ax1.xaxis.set_scale('log') ax1.set_xscale('log') Thanks. --