When using R within an interactive windowing system (such as Windows, Ubuntu, MacOSX) the default behaviour for plot(x)
is to open an interactive graphics device (with plot.new()
under the hood), and draw stuff on it. The device can be interactively moved, resize and closed, and (depending on the platform) presents other GUI-based operations. It can be closed or copied with R code, with dev.off()
, dev.copy()
and there are other functions in the family.
Can the device be moved or resized using R code?
I realize that this question may have many platform-specific answers, and all and any detail is welcome. I am most interested in the default Windows install options for the latest version of R, but keen to learn more about the differences between OS environments and other options.