[R] Append tables

2005-12-14 Thread Bill Hunsicker
R Help: I have read a number of tables into R with identical headings and I would now like to make a single table that has all the data appended under this single heading line. for example: t1 - read.csv(f1,header=TRUE) t2 - read.csv(f2,header=TRUE) all - c(t1,t2) #all is now twice as

Re: [R] Append tables

2005-12-14 Thread Ferdinand Alimadhi
?rbind Bill Hunsicker wrote: R Help: I have read a number of tables into R with identical headings and I would now like to make a single table that has all the data appended under this single heading line. for example: t1 - read.csv(f1,header=TRUE) t2 - read.csv(f2,header=TRUE) all -

Re: [R] Append tables

2005-12-14 Thread Don MacQueen
Does rbind() do what you want? At 11:47 AM -0500 12/14/05, Bill Hunsicker wrote: R Help: I have read a number of tables into R with identical headings and I would now like to make a single table that has all the data appended under this single heading line. for example: t1 -