Learn R Programming

SpaDES (version 1.0.1)

clearPlot: Clear plotting device

Description

Under some conditions, a device and its metadata need to be cleared manually. This can be done with either the new=TRUE argument within the call to Plot. Sometimes, the metadata of a previous plot will prevent correct plotting of a new Plot call. Use clearPlot to clear the device and all the associated metadata manually.

Usage

clearPlot(dev = dev.cur(), removeData = TRUE)

## S3 method for class 'numeric,logical':
clearPlot(dev = dev.cur(), removeData = TRUE)

## S3 method for class 'numeric,missing':
clearPlot(dev)

## S3 method for class 'missing,logical':
clearPlot(removeData)

## S3 method for class 'missing,missing':
clearPlot(dev = dev.cur(), removeData = TRUE)

Arguments

dev
Numeric. Device number to clear.
removeData
Logical indicating whether any data that was stored in the .spadesEnv should also be removed; i.e., not just the plot window wiped.