Re: [R] Converting Strings to Variable names

2010-11-04 Thread Mike Rennie
Hi Anand, Try creating a variable where you can store your data, and append it in your loop. See added lines of code to include below... On Thu, Nov 4, 2010 at 9:43 AM, Anand Bambhania wrote: > Hi all, > > I am processing 24 samples data and combine them in single table called > CombinedSamples

Re: [R] Converting Strings to Variable names

2010-11-04 Thread Erik Iverson
Anand Bambhania wrote: Hi all, I am processing 24 samples data and combine them in single table called CombinedSamples using following: CombinedSamples<-rbind(Sample1,Sample2,Sample3) Please use reproducible examples. Now variables Sample1, Sample2 and Sample3 have many different columns

[R] Converting Strings to Variable names

2010-11-04 Thread Anand Bambhania
Hi all, I am processing 24 samples data and combine them in single table called CombinedSamples using following: CombinedSamples<-rbind(Sample1,Sample2,Sample3) Now variables Sample1, Sample2 and Sample3 have many different columns. To make it more flexible for other samples I'm replacing above