Skip to content

Clearing Console; of weeks of codes!

7 messages · Philipp Pagel, 1Rnwb, Brad Patrick Schneid +2 more

#
Dear All:

I do see I have weeks of codes in my console when I check with my arrow up
keys.  I have been clearing them with Control L but it seems to clear it
clear the screen temporally. I do see the previous codes again when I open R
the next day, after quitting the session! 

Q:
How do I clear this?


Thanks;

YA 

--
View this message in context: http://r.789695.n4.nabble.com/Clearing-Console-of-weeks-of-codes-tp3447506p3447506.html
Sent from the R help mailing list archive at Nabble.com.
#
CTRL-L simply clears the screen and not the history.
What you are seeing is the R history which is stored in the file
.Rhistory in the current working directory when the session is closed
or savehistory() is used. Deleting that file before starting R will
"clear" the history. I am not sure you can clear the history of a
running R session. Deleting the file will not work while the session
is open because the history is in memory at that time and I am not
aware of a command to manipulate the current history.

The environment variable R_HISTSIZE can be used to control the size
of the history.

see ?history for details.

cu
	Philipp
#
Thanks, I thought that removing the list would take care of it. the question
is I do not see a .Rhistory file in my current working directory, so where
it is stored. it is not visible in C:\Program files\R either. Serarching the
C;\ and D:\ drives shows some old .Rhistory files but not the recent ones.
Thanks

--
View this message in context: http://r.789695.n4.nabble.com/Clearing-Console-of-weeks-of-codes-tp3447506p3449832.html
Sent from the R help mailing list archive at Nabble.com.
#
If you don't want your history, why not just do this.
Save workspace image? [y/n/c]:
??
Am I missing something?
1Rnwb wrote:
--
View this message in context: http://r.789695.n4.nabble.com/Clearing-Console-of-weeks-of-codes-tp3447506p3449876.html
Sent from the R help mailing list archive at Nabble.com.
#
On Thu, Apr 14, 2011 at 7:47 AM, 1Rnwb <sbpurohit at gmail.com> wrote:
The .Rhistory file is stored in the working directory.  You hit on the
issue exactly when you said, "it is not **visible**".  Google
something like: "windows files starting with period" to find
directions for how to make it visible using Windows Explorer.
Alternately you can use the command prompt, cd to navigate to the
directory, "dir" to list the files and "del" to delete it (of course
it can be done in one step if you know the path).

Cheers,

Josh