I am working with R on Ubuntu. When I was working I accidentally hit Ctrl-Z and it kicked me out of the workspace and I did not save my variables. Is there anyway to retrieve my old workspace?

Thank you.

link|improve this question

2  
It is generally best not to save variables: save the source code you use to create the variables instead. Your analyses will be much more easily reproducible this way. – Richie Cotton Aug 8 '11 at 20:10
feedback

2 Answers

up vote 6 down vote accepted

Jump back into the still-running session via

  fg 

i.e. bring the R session you suspended via Ctrl-Z back to the foreground.

link|improve this answer
Doesn't work. Says object not found. When I hit Ctrl-Z, it kicked me out of R completely and I was working on the terminal. – GTyler Aug 8 '11 at 19:07
1  
fg is a bash command which you are supposed to use on the shell command-line. – Dirk Eddelbuettel Aug 8 '11 at 19:10
That worked. Thanks! – GTyler Aug 8 '11 at 19:13
3  
So please feel free to accept this answer too. – Dirk Eddelbuettel Aug 8 '11 at 19:15
Problem again. I was using R in VirtualBox and I put my computer to sleep for the night, leaving everything there. When I came back the next day, VirtualBox was powered off so I had to restart and my entire workspace is gone. Here 'fg' did not work. What should I do? – GTyler Aug 10 '11 at 17:07
show 3 more comments
feedback

Reconnect and try "jobs" from the terminal to see if the R process is still there. If so, fg should do the trick as @Dirk said (if you have more than 1 suspended jobs, fg %2 would bring back the second one etc).

As far as I know, if you actually terminate the R session and did not save your workspace, it is lost - sorry. S-PLUS would save all variables in your workspace directory as you generated them, but R keeps everything in memory until you explicitly save your workspace - typically at exit, but save.image() can do it mid-session.

/Tommy

link|improve this answer
This is not quite true: one can have an R history saved and the session can be reproduced. – Iterator Aug 8 '11 at 19:59
...but the R history is only saved when you exit and choose "save workspace", right? So if R crashes, all is lost... – Tommy Aug 9 '11 at 0:40
No, there's a difference between the workspace and the history. The history is like the history of shell commands - it is a separate file. I am not sure if it is logged by default, but it presumably depends on one's frontend. It's often named .Rhistory. – Iterator Aug 9 '11 at 1:05
Yeah, I know about .Rhistory. In RGui and Rterm, the history is only saved at exit as far as I know - at the same time as the workspace is saved, so if you say "no" to saving the workspace, the history isn't saved either. Is it different in your frontend? Try killing the R process and see if the history is accurate up to that point. .. – Tommy Aug 9 '11 at 2:37
feedback

Your Answer

 
or
required, but never shown

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