[Numpy-discussion] Create numpy array from a list error

2009-09-23 Thread Dave Wood
Hi all, I've got a fairly large (but not huge, 58mb) tab seperated text file, with approximately 200 columns and 56k rows of numbers and strings. Here's a snippet of my code to create a numpy matrix from the data file... data = map(lambda x : x.strip().split('\t'), sys.stdin.readlines()) d

Re: [Numpy-discussion] Create numpy array from a list error

2009-09-23 Thread Gökhan Sever
On Wed, Sep 23, 2009 at 9:06 AM, Dave Wood wrote: > Hi all, > > I've got a fairly large (but not huge, 58mb) tab seperated text file, with > approximately 200 columns and 56k rows of numbers and strings. > > Here's a snippet of my code to create a numpy matrix from the data file... > > > > d

Re: [Numpy-discussion] Create numpy array from a list error

2009-09-23 Thread Gökhan Sever
On Wed, Sep 23, 2009 at 9:06 AM, Dave Wood wrote: > Hi all, > > I've got a fairly large (but not huge, 58mb) tab seperated text file, with > approximately 200 columns and 56k rows of numbers and strings. > > Here's a snippet of my code to create a numpy matrix from the data file... > > > > d

Re: [Numpy-discussion] Create numpy array from a list error

2009-09-23 Thread David Warde-Farley
On 23-Sep-09, at 10:06 AM, Dave Wood wrote: > Hi all, > > I've got a fairly large (but not huge, 58mb) tab seperated text > file, with > approximately 200 columns and 56k rows of numbers and strings. > > Here's a snippet of my code to create a numpy matrix from the data > file... > > > >