I have a workspace with lots of objects and I would like to remove all but one. Ideally I would like to avoid having to type rm(obj.1, obj.2... obj.n). Is it possible to indicate
remove all objects but these ones?
Thanks!
|
I have a workspace with lots of objects and I would like to remove all but one. Ideally I would like to avoid having to type Thanks! |
||||
|
|
|
Here is a simple construct that will do it, by using
And a full example. Run this at your own risk - it will remove all variables except
|
|||||||
|
|
Using the
|
|||
|
|
|
To keep all objects whose names match a pattern, you could use
|
|||
|
|
|
Replace
hat-tip: http://r.789695.n4.nabble.com/Removing-objects-and-clearing-memory-tp3445763p3445865.html |
|||
|
|