Generate a blank plot window
Creates a blank plotting window of desired size.
BlankPlot(xrng = c(0, 1), yrng = c(0, 1), Main = "", xlab = "", ylab = "", ...)
xrng
: The range of the x-axis.yrng
: The range of the y-axis.Main
: The main plot title.xlab
: X-axis label.ylab
: Y-axis label....
: Additional arguments passed to the plot
function.This function is used to initiate a blank plotting window in R. xrng and yrng are used to initiate the size of the plotting region.
Generates a blank plot
Ryan C. Sartor
plot
BlankPlot(xrng=c(0,10),yrng=c(0,10),Main="Test",xlab="xlab",ylab="ylab")
Useful links