dev.create {kutils} | R Documentation |
Create a graphics device
Description
This is a way to create a graphic device on screen that can display R plots. It is performing the same purpose as R's dev.new, but it overcomes the limitations of RStudio. It is needed because RStudio does not implement fully the functionality of dev.new. This is suitable for Windows, Linux, and Macintosh operating systems.
Usage
dev.create(...)
Arguments
... |
Currently, height and width parameters that would be suitable with dev.new |
Details
The argument in dev.new named noRStudioGD seems to be aimed at same purpose. But it does not do what I want and documentation is too sparse.
Author(s)
Paul Johnson <pauljohn@ku.edu>
Examples
if(interactive()) dev.create(height = 7, width = 3)
dev.off()
[Package kutils version 1.73 Index]