search for: id_00002

Displaying 1 result from an estimated 1 matches for "id_00002".

Did you mean: id_00003
2011 Mar 06
2
How to load load multiple text files and order by id
...you could point me in the right direction I have a set of text files (36). Each file has only two columns (id and count) , I am trying to figure out a way to load all the files together and then have them ordered by id into a matrix data frame. For example If each txt file has : ID count id_00002 20 id_00003 3 A Merged File: ID count_file1 count_file2 count_file3 count_file4 id_00002 20 8 12 5 19 26 id_00003 3 0 2 0 0 0 id_00004 75 84 241 149 271 257 Is there a relatively simply way to do that in R? I was trying with <- read.tabl...