Remove all objects except one or few in R

Remove all objects except one or few in R

Sometimes you need an almost fresh start, and, in that case, here is how to remove all objects except one or few in R.

With the function ls, you can get a list of all objects. With the function rm, you can remove specified objects.

a <- b <- c <- d <- 1

ls()

#[1] "a" "b" "c" "d"

If in the list of all objects is something you would like to keep, you can detect that with function match. That position gives which value you need to remove from the list in R.

a <- b <- c <- d <- 1

match("c", ls())

#[1] 3

Remove all objects except one in R

a <- b <- c <- d <- 1

rm(list = ls()[-match("c", ls())])
 
ls()

#[1] "c"

Here is how to do that if you have more than one object to remove from the list.

a <- b <- c <- d <- 1

rm(list = ls()[-match(c("c", "d"), ls())])

After removing all necessary objects, you can also clear cache in R. If you are doing that from the console, then here is a little trick on how to run multiple functions one after another. By using a semicolon in between.

a <- b <- c <- d <- 1

rm(list = ls()[-match("c", ls())]) ; gc()

If you would like to clear unnecessary clutter in R, then I recommend this post.

How to clear RStudio panes with code





Posted

in

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *