Easy-to-install-and-use scientific graphics (plotting) package forPython 2.5.1 on Linux Ubuntu 7.1

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dr. Colombes

    Easy-to-install-and-use scientific graphics (plotting) package forPython 2.5.1 on Linux Ubuntu 7.1

    Is there an easy scientific graphics (plotting) package for Python
    2.5.1 running on Ubuntu Linux 7.1 ("Gutsy Gibbon")?

    A few years ago I used PyLab (a MatLab-like plotting module for
    Python) on a Windows machine, but I don't know if there is a similar
    easy-to-install-and-use Python 2.5.1-compatible graphics package for
    Ubuntu Linux 7.1?

    Thanks for any suggestions.
  • Robert Kern

    #2
    Re: Easy-to-install-and-use scientific graphics (plotting) packagefor Python 2.5.1 on Linux Ubuntu 7.1

    Dr. Colombes wrote:
    Is there an easy scientific graphics (plotting) package for Python
    2.5.1 running on Ubuntu Linux 7.1 ("Gutsy Gibbon")?
    >
    A few years ago I used PyLab (a MatLab-like plotting module for
    Python) on a Windows machine, but I don't know if there is a similar
    easy-to-install-and-use Python 2.5.1-compatible graphics package for
    Ubuntu Linux 7.1?
    matplotlib (which you misname PyLab) works with Python 2.5.1 on Ubuntu, too.

    $ sudo apt-get install python-matplotlib

    --
    Robert Kern

    "I have come to believe that the whole world is an enigma, a harmless enigma
    that is made terrible by our own mad attempt to interpret it as though it had
    an underlying truth."
    -- Umberto Eco

    Comment

    • Joshua Kugler

      #3
      Re: Easy-to-install-and-use scientific graphics (plotting) packagefor Python 2.5.1 on Linux Ubuntu 7.1

      Is there an easy scientific graphics (plotting) package for Python
      2.5.1 running on Ubuntu Linux 7.1 ("Gutsy Gibbon")?
      >
      A few years ago I used PyLab (a MatLab-like plotting module for
      Python) on a Windows machine, but I don't know if there is a similar
      easy-to-install-and-use Python 2.5.1-compatible graphics package for
      Ubuntu Linux 7.1?
      We've been using Matplotlib for a while, but are looking for alternatives.
      I recently came across Chaco (http://code.enthought.com/chaco/) and am
      quite impressed with what I see so far.

      It's API is very clean, not requiring the "magic functions" (can we say
      setp()?) that is required by matplotlib. Very OO, and from what I see of
      example code, the API complies with PEP 8 conventions.

      Installation was easy (easy_install), but for a couple packages, you will
      need GCC, python-dev, and swig.

      I haven't dug into it much, but it looks really, really promising.

      j

      Comment

      Working...