R/par.reset.R

Defines functions par.reset

Documented in par.reset

.par.orig <- par()

##' Restore the 'par' settings
##' 
##' If you have been mucking around with parameter settings, this function
##' will revert to the parameter settings that were available when this
##' package was loaded.
##' @export
par.reset <- function() {
  par(.par.orig)
}
kevinushey/Kmisc documentation built on May 20, 2019, 9:08 a.m.