Re: [R] Where does R store workspace and commands that load on startup

2013-03-31 Thread Sarah Goslee
By default R saves them as .RData and .Rhistory in the working directory - files with names beginning with a . are invisible on linux by default. ls -a at a shell command line in that directory will show them to you. Sarah On Sun, Mar 31, 2013 at 1:49 PM, wrote: > When I close R and answer yes

[R] Where does R store workspace and commands that load on startup

2013-03-31 Thread jroyrobertson
When I close R and answer yes to save workspace, R automatically loads it and apparently also the command history at start up. I would like to know where R stores this information. I know that I can save .RData and .Rhistory files, but I would like to know how(where) R stores this information au