[R] Scripting issues

2008-01-11 Thread dave mitchell
Users, I am currently running scripts on a rather large dataset. Many times I sort the data into smaller datasets and must analyze them individually. My instincts are to make a for loop, but I can't seem to find a way to index each sub-dataset (data frames as the case would have it). I would

Re: [R] Scripting issues

2008-01-11 Thread jim holtman
Could you explain a little more about exactly what you are trying to do, or provide some sample code. How are you creating the subsets? Can you put them in a list and then process them from the list, or you could use an 'lapply'. So some details would be helpful. On 1/11/08, dave mitchell

Re: [R] Scripting issues

2008-01-11 Thread Greg Snow
] Scripting issues Users, I am currently running scripts on a rather large dataset. Many times I sort the data into smaller datasets and must analyze them individually. My instincts are to make a for loop, but I can't seem to find a way to index each sub-dataset (data frames as the case would have