Question On Implementation

I don't think that "plot" has the "set_data" attribute that I

    >> need in order to interact with every single point of the plot,
    >> but I may be wrong.
    >>
    >> Andrea.

    > Sorry, I have said something stupid. Of course I can use
    > plot, now it's working. However, I have another (probably
    > basic) question. In order to reverse the y-axis, for
    > example, the only way I found is to get the minimum and
    > the maximum of my data and then do something like:

    > myaxes.set_ylim(mymax, mymin)

How about

  ymin, ymax = myaxes.get_ylim()
  myaxes.set_ylim(ymax, ymin)

JDH

···

-------------------------------------------------------

    > This SF.Net email is sponsored by the 'Do More With Dual!'
    > webinar happening July 14 at 8am PDT/11am EDT. We invite
    > you to explore the latest in dual core and dual graphics
    > technology at this free one hour event hosted by HP, AMD,
    > and NVIDIA. To register visit
    > http://www.hp.com/go/dualwebinar
    > _______________________________________________
    > Matplotlib-users mailing list
    > Matplotlib-users@lists.sourceforge.net
    > matplotlib-users List Signup and Options