On Wed, May 21, 2008 at 10:57 AM, PaterMaximus
<[EMAIL PROTECTED]> wrote:
> I want to make one scatter plot and use the same scales on another. I think
> I seen getting the Axes from the first scatter plot using v=axis() and then
> setting them on second with axis(v) but I can not get to work. Any help
> appreciated

Try using shared scales:

ax1 = subplot(211)
ax2 = subplot(212, sharex=ax1, sharey=ax1)

JDH

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to