Re: [R] how to save multiple work space

2012-04-11 Thread ya
Hi Petr and Michael, Thank you very much for the response. It worked! Now I can use multiple R sessions simultaneously, I just need to save their workspace separately. And If I want those objects in the single session, I just load them all in this session, and save the workspace again togethe

Re: [R] how to save multiple work space

2012-04-11 Thread ya
Hi Petr and Michael, Thank you very much for the response. It worked! Now I can use multiple R sessions simultaneously, I just need to save their workspace separately. And If I want those objects in the single session, I just load them all in this session, and save the workspace again togethe

Re: [R] how to save multiple work space

2012-04-10 Thread Petr PIKAL
Hi > > You'll need to save them manually to avoid name conflicts -- save.image() > is the function to do so but you need to give a file name. Or it is necessary have separate folder for each R session. Regards Petr > > Michael > > On Apr 10, 2012, at 7:41 AM, ya wrote: > > > Hi guys, >

Re: [R] how to save multiple work space

2012-04-10 Thread R. Michael Weylandt
Best I understand it yes: I'm not sure if there's an easy way to combine sessions beyond loading them all into a single session and then saving that. Michael On Tue, Apr 10, 2012 at 8:01 AM, ya wrote: > so, objects in 3 different sessions would be saved separately into 3 > different R image file

Re: [R] how to save multiple work space

2012-04-10 Thread R. Michael Weylandt
You'll need to save them manually to avoid name conflicts -- save.image() is the function to do so but you need to give a file name. Michael On Apr 10, 2012, at 7:41 AM, ya wrote: > Hi guys, > > I have a question. I am running 3 R sessions simultaneously for different > analysis. I found ou

[R] how to save multiple work space

2012-04-10 Thread ya
Hi guys, I have a question. I am running 3 R sessions simultaneously for different analysis. I found out that when R quit, only objects in one of these sessions was saved in the work space. How can I save objects of all 3 R sessions? Thank you very much. YA