Re: [R] how to rest the variables

2010-02-09 Thread jim holtman
What do you mean by 'reset'? Why not put your processing in a function that you call so that each time you invoke it, any variables local to the function start in an 'initialized' state (depends on how you are using them). If you need them to have some specific value, then put in the code necessa

[R] how to rest the variables

2010-02-09 Thread kayj
Hi , I have several commands that I want to run, I was wondering if there is an easy way to reset my variables before the start of each run for ( i in 1:200){ reset the variables run the commands } My solution right now is to set all my vectors to 0 and my data frames to NULL after the start o