newPlot {quickPlot} | R Documentation |
Open a new plotting window
Description
Open a new plotting window
Usage
newPlot(noRStudioGD = TRUE, ..., verbose = getOption("quickPlot.verbose"))
dev.useRSGD(useRSGD = FALSE)
Arguments
noRStudioGD |
Logical Passed to |
... |
Additional arguments. |
verbose |
Numeric or logical. If |
useRSGD |
Logical indicating whether the default device should be the
RStudio graphic device, or the platform default ( |
Note
dev.new()
is supposed to be the correct way to open a new
window in a platform-generic way; however, does not work in RStudio
(SpaDES#116).
Use dev.useRSGD(FALSE)
to avoid RStudio for the remainder of this session,
and dev.useRSGD(TRUE)
to use the RStudio graphics device.
(This sets the default device via the device
option.)
Author(s)
Eliot McIntire and Alex Chubaty
See Also
Examples
## Not run:
## set option to avoid using Rstudio graphics device
dev.useRSGD(FALSE)
## open new plotting window
newPlot()
## End(Not run)