R/go.R

Defines functions go

Documented in go

#' Close Graphics Devices
#'
#' Close all graphics devices.
#'
#' @return Closes all graphics devices.
#'
#' @note Shorthand notation for a common task.
#'
#' @importFrom grDevices graphics.off
#'
#' @export

go <- function()
{
  graphics.off()
}
arni-magnusson/arni documentation built on Nov. 3, 2023, 7:35 p.m.