Re: plotting with gnuplot.py

2005-09-05 Thread Grant Edwards
On 2005-09-04, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Still having some issues plotting: > > In attempting as explained above: > > import Gnuplot,Numeric > filename = ('Default.PL1') > data = scipy.io.array_import.read_array(filename) > > y = data[:,1] > x = data[:,0] > z = data[:,2] > > //

Re: plotting with gnuplot.py

2005-09-03 Thread [EMAIL PROTECTED]
Still having some issues plotting: In attempting as explained above: import Gnuplot,Numeric filename = ('Default.PL1') data = scipy.io.array_import.read_array(filename) y = data[:,1] x = data[:,0] z = data[:,2] //I think u need to take the transpose of this column before plotting.. x=Numeric.t

Re: plotting with gnuplot.py

2005-09-03 Thread [EMAIL PROTECTED]
Thanks for the response Varun, I guess I still not sure the distingtion betweein gnuplot.py and its implentation in scipy. -- http://mail.python.org/mailman/listinfo/python-list

Re: plotting with gnuplot.py

2005-09-02 Thread Varun Hiremath
On Fri, Sep 02, 2005 at 02:35:45AM -0700, [EMAIL PROTECTED] wrote: > Hi, > > I've been having some problems trying some basic plotting commands with > gnuplot.py. My setup is the Python 2.3 Enthought edition and my script > looks as: > > from scipy import * > from scipy import gplt > import scipy