Create a graphics device
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.
dev.create(...)
... |
Currently, height and width parameters that would be suitable with dev.new |
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.
Paul Johnson <pauljohn@ku.edu>
if(interactive()) dev.create(height = 7, width = 3) dev.off()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.