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.
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.