powered by
Wipe an environment clean. This is similar to the broom button in RStudio.
RStudio
wipe_clean(environment = getOption("wipe_clean_environment"), all_names = TRUE)
A character vector containing the names of objects removed, but called for its side effect of removing all objects from the environment.
The environment that should be wiped clean.
See argument all.names for ls.
all.names
ls
Other R memory functions: memory_hogs(), wipe_tempdir()
memory_hogs()
wipe_tempdir()
an_object <- 1 wipe_clean() ls() e <- new.env() assign("a", 1, envir = e) assign("b", 1, envir = e) ls(envir = e) wipe_clean(envir = e) ls(envir = e) RUnit::checkIdentical(length(ls(envir = e)), 0L)
Run the code above in your browser using DataLab