Re: [Tutor] Reading in large .dat file

2016-06-29 Thread Colin Ross
On Wed, Jun 29, 2016 at 4:21 PM, Peter Otten <__pete...@web.de> wrote: > Colin Ross wrote: > > > On Wed, Jun 29, 2016 at 2:41 PM, Peter Otten <__pete...@web.de> wrote: > > > >> Colin Ross wrote: > >> > >> > Good afternoon, > >> > > >> > I have a .dat file that is 214 rows by 65 columns that I woul

Re: [Tutor] Reading in large .dat file

2016-06-29 Thread Peter Otten
Colin Ross wrote: > On Wed, Jun 29, 2016 at 2:41 PM, Peter Otten <__pete...@web.de> wrote: > >> Colin Ross wrote: >> >> > Good afternoon, >> > >> > I have a .dat file that is 214 rows by 65 columns that I would like to >> > read into python and plot the 1st column versus all other columns. >> > >

Re: [Tutor] Reading in large .dat file

2016-06-29 Thread Colin Ross
On Wed, Jun 29, 2016 at 2:41 PM, Peter Otten <__pete...@web.de> wrote: > Colin Ross wrote: > > > Good afternoon, > > > > I have a .dat file that is 214 rows by 65 columns that I would like to > > read into python and plot the 1st column versus all other columns. > > > > My code: > > > > ##

Re: [Tutor] Reading in large .dat file

2016-06-29 Thread Peter Otten
Colin Ross wrote: > Good afternoon, > > I have a .dat file that is 214 rows by 65 columns that I would like to > read into python and plot the 1st column versus all other columns. > > My code: > > # > > import numpy as np

[Tutor] Reading in large .dat file

2016-06-29 Thread Colin Ross
Good afternoon, I have a .dat file that is 214 rows by 65 columns that I would like to read into python and plot the 1st column versus all other columns. My code: # import numpy as np import scipy import pylab as pl import