Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RStudio - Plots in multiple windows

Tags:

plot

rstudio

I'm using RStudio, and I want to view plots in a separate window to the console. How can I do this?

Additional Information

  • Windows 7
  • RStudio version 3.2.2 (32 bit)
  • Currently running a "Swirl" lesson, so the plots pop up automatically as I advance down the console

R Studio - Plots in one window

like image 631
user2287137 Avatar asked Mar 14 '23 01:03

user2287137


1 Answers

using x11() should get what you want, plots on separate window.

x11()
plot(cars)
like image 163
user5249203 Avatar answered Mar 19 '23 17:03

user5249203