<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<body bgcolor="#FFFFFF" style="BACKGROUND-COLOR: #ffffff; COLOR: #000000; FONT-FAMILY: Arial; FONT-SIZE: 10pt">
Indrajit SenGupta wrote:
<blockquote TYPE=CITE>&nbsp;<span class=410510313-22122001><font face="Tahoma">Dear
R- users,</font></span><span class=410510313-22122001><font face="Tahoma">I
have a small question on R. The other day I was using R when I decided
to quit and when I was prompted with the question whether I would like
to save the workspace image, I accidently pressed yes and after that every
time start R the previous work space gets loaded. How do I avoid this?</font></span><span class=410510313-22122001><font face="Tahoma">Thanks
in advance,</font></span><span class=410510313-22122001></span><span class=410510313-22122001><font face="Tahoma">______________________</font><font face="Tahoma"><font size=-1>Indrajit
SenGupta</font></font><font face="Tahoma"><font size=-1>Department Of Statistics</font></font><font face="Tahoma"><font size=-1>St.
Xavier's College</font></font><font face="Tahoma"><font size=-1>Calcutta
University</font></font><font face="Tahoma"><font size=-1><a href="mailto:indra_calisto@yahoo.com">indra_calisto@yahoo.com</a></font></font><font face="Tahoma"><font size=-1><a href="mailto:indrajit_sg@rediffmail.com">indrajit_sg@rediffmail.com</a></font></font>&nbsp;</span></blockquote>
I have had that kind of problem and among a lot responses I have received,
here are solutions :
<p>Subject:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Re: [R]
R workspace
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Date:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sat, 15
Dec 2001 16:36:14 -0500
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; From:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Duncan
Murdoch &lt;dmurdoch@pair.com>
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; To:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Aboubakar
Maitournam &lt;amaitour@pasteur.fr>, r-help@stat.math.ethz.ch
<br>&nbsp;References:
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1
<br>&nbsp;
<br>&nbsp;
<br>&nbsp;
<p>On Thu, 13 Dec 2001 11:42:40 +0100, you wrote:
<p>>
<br>>Dear all,
<br>>
<br>>I m using&nbsp; R version 1.3.1 under linux (Red Hat).
<br>>When i left my session, naturally i have the question
<br>>Save workspace image? [y/n/c]?
<br>>I said n because I want to remove all the contain of my workspace.
<br>>Then I left R with q().
<p>This means it won't save the current workspace, but if you already
<br>have a saved one, it will be left there.
<p>>
<br>>When I open new session I have the R welcome message and
<br>>[previously save workspace restored]. By typing ls() I find
<br>>what I have normally removed and I want to remove.
<br>>I have try rm(" "). But every time I open R session I find the objects.
<p>There are several ways to get rid of the old saved workspace, for
<br>example:
<p>&nbsp;unlink(".RData")
<br>&nbsp;q("no")
<p>or
<p>&nbsp;rm(list=ls())
<br>&nbsp;q("yes")
<p>Duncan Murdoch
</body>
</html>