R/clear.r

#--- 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")
}
cdcrabtree/plotrr documentation built on May 13, 2019, 2:20 p.m.