R normally only saves objects in .GlobalEnv:

$ R
> library(rjson)
> fromJSON
function (...) ...
> q(save='yes')
$ R
> fromJSON
Error: object 'fromJSON' not found

Is there a way to have this information saved as well?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

To the best of my knowledge, no. The workspace is for objects like data and functions. Starting R with particular packages loaded is what your .Rprofile file is for, and you can have a different one in each directory.

You could, I suppose, save a function in the workspace that loads the packages you want, and then run that function when you first start R.

link|improve this answer
feedback

I'd recommend not saving anything between r sessions and instead recreate it all using code. This is much more likely to lead to reproducible results.

link|improve this answer
1  
True, and I always try and get everything into code that can be straight-up run when I'm finished, it's just that it gets slow repeatedly running longer and longer scripts. – Owen Aug 19 '11 at 20:59
feedback

joran is right, but I want to mention a technique that, while cumbersome, might be helpful.

You can use a checkpointing program such as DMTCP to save the entire R process and restart it later.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.