BlankPlot function

Generate a blank plot window

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 = "", ...)

Arguments

  • 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.

Details

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.

Returns

Generates a blank plot

Author(s)

Ryan C. Sartor

See Also

plot

Examples

BlankPlot(xrng=c(0,10),yrng=c(0,10),Main="Test",xlab="xlab",ylab="ylab")
  • Maintainer: Ryan C. Sartor
  • License: GPL (>= 2)
  • Last published: 2022-06-27

Useful links