Re: [R] howto remove all variables (cleanup)

2007-11-25 Thread John Kane
I see a couple of people have already supplied rm(list=ls()) A function that I find useful is the ?keep in the gdata library. It allows you to keep just a few things that you want to work with and clean up all the odds & sods. --- Jonas Stein <[EMAIL PROTECTED]> wrote: > Hi, > > as i am quit

Re: [R] howto remove all variables (cleanup)

2007-11-25 Thread Gabor Csardi
rm(list=ls()) G. On Sun, Nov 25, 2007 at 01:12:19PM +0100, Jonas Stein wrote: > Hi, > > as i am quite new to R i often play around with commands in R until my graph > looks nice. > > After testing things there are often lots of variables left. How can i reset > all vars in one command before i

Re: [R] howto remove all variables (cleanup)

2007-11-25 Thread Denver XU
rm(list=ls(all=TRUE)) but be careful to use it. 2007/11/25, Jonas Stein <[EMAIL PROTECTED]>: > Hi, > > as i am quite new to R i often play around with commands in R until my graph > looks nice. > > After testing things there are often lots of variables left. How can i reset > all vars in one com

[R] howto remove all variables (cleanup)

2007-11-25 Thread Jonas Stein
Hi, as i am quite new to R i often play around with commands in R until my graph looks nice. After testing things there are often lots of variables left. How can i reset all vars in one command before i do the final plot? At the moment i restart rkward (my editor) but thats a bit uncomfortable.