Re: [R] Deleting .RData files

2009-07-25 Thread milton ruser
Be carefull with this, but: rm(list=ls()) q("yes") :-) milton On Sat, Jul 25, 2009 at 7:19 AM, Paul Emberson wrote: > Hi John, > > You can use > > rm(object) > > to delete a specific object from the current environment and then save > your workspace again without those objects > > ls() > > to s

Re: [R] Deleting .RData files

2009-07-25 Thread Paul Emberson
Hi John, You can use rm(object) to delete a specific object from the current environment and then save your workspace again without those objects ls() to see a list of objects could also be useful Regards, Paul John Seppänen wrote: > Hi all! I have accidentially saved few objects when I hav

[R] Deleting .RData files

2009-07-25 Thread John Seppänen
Hi all! I have accidentially saved few objects when I have closed workspace and clicked from "save workspace image" "Yes". Now I would like to delete the .RData files so that workspace wouldnt restore the unwanted objects everytime I open the workspace. I know i could delete the corresponding .RDa