[R] How do I add rows to a table?

2004-08-18 Thread Beverly Seavey
if I read from 1 file: inp1 - scan(data1,list(0,0)) inp2 - scan(data2,list(0,0)) allInp - c(inp1,inp2) I get a table with 4 columns. How can I get a table with 2 columns and more rows? __ [EMAIL PROTECTED] mailing list

Re: [R] How do I add rows to a table?

2004-08-18 Thread Kevin Wang
Hi, On Wed, 18 Aug 2004, Beverly Seavey wrote: inp1 - scan(data1,list(0,0)) inp2 - scan(data2,list(0,0)) allInp - c(inp1,inp2) I get a table with 4 columns. If I understand you correctly... Have you tried cbind()? Cheers, Kevin Ko-Kang