Search code examples
rplotgedit

show multiple R graphics windows in (r)gedit


I'm using rgedit plugin for gedit. I would like to allow more than one graphic (plot) window to show at a time. Currently, whenever I plot(), the plot overwrites the previous plot window.


Solution

  • Not a gedit issue but a general R feature -- use x11() (or windows()) to create new plot devices.

    You can then use dev.set() et al to flip between them.