Re: [Tutor] tab separated file handling

2018-06-13 Thread Neil Cerutti
On 2018-06-13, Niharika Jakhar wrote: > hi everyone! > I am working with a tsv file which has NA and empty values. > I have used csv package to make a list of list of the data. > I want to remove NA and empty values. Should the the data 40 50 NA 12 mean the same thing as 40 50 12? -- Neil Cerut

Re: [Tutor] tab separated file handling

2018-06-13 Thread Peter Otten
Niharika Jakhar wrote: > hi everyone! > I am working with a tsv file which has NA and empty values. > I have used csv package to make a list of list of the data. > I want to remove NA and empty values. > > This is what I wrote: > > > #removes row with NA values > for rows in self.datali

Re: [Tutor] tab separated file handling

2018-06-13 Thread Joel Goldstick
On Wed, Jun 13, 2018 at 6:03 AM, Niharika Jakhar wrote: > hi everyone! > I am working with a tsv file which has NA and empty values. > I have used csv package to make a list of list of the data. > I want to remove NA and empty values. > > This is what I wrote: > > > #removes row with NA values >

[Tutor] tab separated file handling

2018-06-13 Thread Niharika Jakhar
hi everyone! I am working with a tsv file which has NA and empty values. I have used csv package to make a list of list of the data. I want to remove NA and empty values. This is what I wrote: #removes row with NA values for rows in self.dataline: for i in rows: