[R] Reading a tab delimitted text

2004-11-30 Thread Srinivas Iyyer
Dear group, I have a tab delimitted text file with 21 column and 1988 rows. When I read the file: D1 - read.table(file=gist_data1.txt,sep=\t,header=T) dim(D1) [1] 1811 20 It reads only 1811 rows from that file. I saved this file as CSV file and I read it again using: D1 -

Re: [R] Reading a tab delimitted text

2004-11-30 Thread Douglas Bates
Srinivas Iyyer wrote: Dear group, I have a tab delimitted text file with 21 column and 1988 rows. When I read the file: D1 - read.table(file=gist_data1.txt,sep=\t,header=T) dim(D1) [1] 1811 20 It reads only 1811 rows from that file. I saved this file as CSV file and I read it again using: D1 -