Re: [R] Perform operations on dataframes called with paste in loops

2009-11-18 Thread Greg Snow
t: [R] Perform operations on dataframes called with paste in > loops > > > In a loop, I compose the name of a csv file using paste, then read it > (e.g., > dataset1.csv, dataset2.csv, etc). The name of the dataframe assigned to > the > imported csv is also composed with paste

Re: [R] Perform operations on dataframes called with paste in loops

2009-11-18 Thread Uwe Ligges
separent wrote: In a loop, I compose the name of a csv file using paste, then read it (e.g., dataset1.csv, dataset2.csv, etc). The name of the dataframe assigned to the imported csv is also composed with paste (e.g., dataset1, dataset2, etc.). Now I want to perform operations on the dataframes

Re: [R] Perform operations on dataframes called with paste in loops

2009-11-17 Thread David Winsemius
On Nov 17, 2009, at 6:14 PM, separent wrote: In a loop, I compose the name of a csv file using paste, then read it (e.g., dataset1.csv, dataset2.csv, etc). The name of the dataframe assigned to the imported csv is also composed with paste (e.g., dataset1, dataset2, etc.). Now I want to p

[R] Perform operations on dataframes called with paste in loops

2009-11-17 Thread separent
In a loop, I compose the name of a csv file using paste, then read it (e.g., dataset1.csv, dataset2.csv, etc). The name of the dataframe assigned to the imported csv is also composed with paste (e.g., dataset1, dataset2, etc.). Now I want to perform operations on the dataframes dataset1, dataset2,