Displaying 1 result from an estimated 1 matches for "rs835".
2008 Jul 03
1
read.table, NA assignment, and sep
I place the following data in a file
id rs835 rs169 rs174
1001 CC GG CC
10032 CC GG CC
10066 CC NA CC
If I read it in as
tempDat <- read.table("tempDat.txt",na.strings="NA",header=TRUE)
I get the following.
id rs835 rs169 rs174
1 1001 CC GG CC
2 10032 CC GG CC
3 10066 C...