[R] object names from character strings

2010-12-26 Thread Jim Bouldin
I realize this is probably pretty basic but I can't figure it out. I'm looping through an array, doing various calculations and producing a resulting data frame in each loop iteration. I need to give each data frame a different name. Although I can easily create a new character string for

Re: [R] object names from character strings

2010-12-26 Thread David Winsemius
On Dec 26, 2010, at 4:04 AM, Jim Bouldin wrote: I realize this is probably pretty basic but I can't figure it out. I'm looping through an array, doing various calculations and producing a resulting data frame in each loop iteration. I need to give each data frame a different name.

Re: [R] object names from character strings

2010-12-26 Thread jim holtman
Consider storing the dataframes in a list so that you do not have to create unique names and it will also give you better control by keeping all the data together in one object. On Sun, Dec 26, 2010 at 4:04 AM, Jim Bouldin bouldi...@gmail.com wrote: I realize this is probably pretty basic but I