Hello,

I am testing the newly added subplots function in ipython -pylab with the
following code:

f, ((ax1, ax2), (ax3, ax4)) = plt.subplots(2,2, sharey=True)
ax1.plot(np.random.random(20))
ax2.plot(np.random.random(20))
ax3.plot(np.random.random(20))
ax4.plot(np.random.random(20))

For some reason scaling the y-axes logaritmically works only on the focused
figure canvas, the rest of the subplots are scaled in a distorted fashion.
Axes labels change to proper notation but the scaling stays as if linear
along with the data. See for better description:
http://img408.imageshack.us/img408/7149/logscale.png

Any ideas?

-- 
Gökhan
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to