R/clear.r

Defines functions clear

Documented in clear

#--- Clear function ---#
#'@title (Effectively) clears R terminal
#'@description Effectively clears the R terminal by filling it with whitespace.
#'@author Charles Crabtree \email{ccrabtr@umich.edu}
#'@param ... An unused argument.
#'@examples
#'clear()
#'@export

clear <- function(...) {
  cat("\014")
}

Try the plotrr package in your browser

Any scripts or data that you put into this service are public.

plotrr documentation built on May 2, 2019, 9:36 a.m.