Re: [R] big data file geting truncated

2003-08-14 Thread Philipp Pagel
Hi! I used the following commands mydata-read.table(dataALLAMLtrain.txt, header=TRUE, sep =\t,row.names=NULL) It reads data without any error Now if I use edit(mydata) It shows only 3916 entries, whereas the actual file contains 7129 entries) [...] So it seems R is truncating the

Re: [R] big data file geting truncated

2003-08-14 Thread Rafael A. Irizarry
without seeing the file its hard to tell but one possibility that comes to mind is that there is a # character in your file. read.table considers this a comment character. use the argurment comment.char= and see what happens... On Wed, 13 Aug 2003, Dibakar Ray wrote: I am very new to R. I

[R] big data file geting truncated

2003-08-14 Thread Dibakar Ray
I am very new to R. I was trying to load some publicly available Expression data in to R. I used the following commands mydata-read.table(dataALLAMLtrain.txt, header=TRUE, sep =\t,row.names=NULL) It reads data without any error Now if I use edit(mydata) It shows only 3916 entries, whereas the

Re: [R] big data file geting truncated

2003-08-14 Thread Peter Dalgaard BSA
Dibakar Ray [EMAIL PROTECTED] writes: I am very new to R. I was trying to load some publicly available Expression data in to R. I used the following commands mydata-read.table(dataALLAMLtrain.txt, header=TRUE, sep =\t,row.names=NULL) It reads data without any error Now if I use