Dear all, I have problem when reading a table into R. The total row of read in table has is much less than the original saved table.
I built a 1,273,230 by 6 data set named "mydata2", it was saved in the following command, write.table(mydata2, "mydata2.txt", row.name=F,col.name=T,quote=F,sep="\t") The next day I read in above saved text file into R, temp<-read.table("mydata2.txt",header=T,sep="\t",na.strings="NA") However, the dimension of "temp" is 636,615 X 6. Do yo know why? Thanks for your attention. Sityee [[alternative HTML version deleted]] ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.