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?
|
feedback
|
|
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. | |||
|
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. | |||||
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. | |||
|
feedback
|