plot_clean: Create A Blank Plot With Given X And Y Range (stable)

View source: R/plot_helpers.R

plot_cleanR Documentation

Create A Blank Plot With Given X And Y Range (stable)

Description

Create A Blank Plot With Given X And Y Range

(stable)

Usage

plot_clean(
  xlim,
  ylim,
  x = 1,
  y = 1,
  type = "n",
  xlab = "",
  ylab = "",
  cex.main = rave_cex.main,
  cex.axis = rave_cex.axis,
  cex.lab = rave_cex.lab,
  ...
)

Arguments

xlim

numeric vector

ylim

numeric vector

x

x

y

y

type

default is 'n', i.e. plot nothing. See plot.default

xlab

x label

ylab

y label

cex.main

title font size

cex.axis

axis ticks font size

cex.lab

axis label font size

...

other params passed to plot

Examples

## Not run: 
# create a blank plot with x from 0 to 10 and y from 1 to 5
plot_clean(0:10, 1:5, xlab = 'X')

## End(Not run)

dipterix/rutabaga documentation built on June 25, 2022, 2:38 p.m.