On Tuesday 25 July 2006 12:30, massimo sandal wrote:
> Hi,
>
> What is the method used to flip axes in X and/or Y direction in the
> matplotlib API? that is, to plot something with values from positive to
> negative instead of the contrary?

just set the limits of your axes with xlim/ylim or set_ylim/set_xlim
For example:

y = N.arange(10)
plot(y)
ylim(y[-1],y[0])


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to