blank: Create a plot with a blank space as the default

View source: R/blank.R

blankR Documentation

Create a plot with a blank space as the default

Description

A simple wrapper on plot with all default values set to create a blank plot space.

Specifically, x = 1, y = 1, type = "n", xlab = "", ylab = "", xaxt = "n", yaxt = "n", and bty = "n". Any of the input values can be overwritten within this function's call.

Usage

blank(
  x = 1,
  y = 1,
  type = "n",
  xlab = "",
  ylab = "",
  xaxt = "n",
  yaxt = "n",
  bty = "n",
  ...
)

Arguments

x

Set to 1. See plot.

y

Set to 1. See plot.

type

Set to "n". See plot.

xlab

Set to "". See plot.

ylab

Set to "". See plot.

xaxt

Set to "n". See plot.

yaxt

Set to "n". See plot.

bty

Set to "n". See plot.

...

Additional arguments sent to plot.

Examples

## Not run: 
  blank()   

## End(Not run)


dapperstats/bbplot documentation built on June 11, 2022, 8:38 p.m.