R/plot_functions.R

Defines functions blankPlot

Documented in blankPlot

#' Creates a blank plot canvas based on dimensions provided. Does not return anything.
#'
#' @return NULL
#'
#' @examples
#' blankPlot(x=c(0,10),y=c(0,20))
#'
#' @export

blankPlot <- function(...){
	plot(..., type='n', bty='n',
		xaxt='n', yaxt='n', xlab="", ylab="")
}
Gimperion/tomkit documentation built on May 22, 2020, 12:14 a.m.