R/rm_all.R

Defines functions rm_all

Documented in rm_all

#' Remove all data from the global environment
#'
#' Cleans the global environment.  Effectively the same as clicking the broom button in RStudio.
#'
#' @export

rm_all <- function() {
  rm(list=ls(envir = globalenv()), envir = globalenv())
}
overdodactyl/mRclwhip documentation built on June 30, 2023, 6:24 a.m.