Display graphics in plots window pane rather than opening new window in RStudio Display graphics in plots window pane rather than opening new window in RStudio r r

Display graphics in plots window pane rather than opening new window in RStudio


It is a problem that appeared with R 3.3.0 for some RStudio versions. You can check your version with version in RStudio.It should work with a RSudio 0.99.902.

For more details, check here.


Some code you ran probably pushed a new graphics device onto the stack. You can turn it off with:

> dev.off()

See the R documentation for managing output devices.