2

I am working with the tmap package and want to produce leaflet maps (with tmap_mode("view")). Rstudio crashes quite often when I try this.

How can I force Rstudio (or only the "plotting" function) to display the output rather in the browser than in the intern viewer.

Alex
  • 4,925
  • 2
  • 32
  • 48

1 Answers1

0

You can call a plot window that is used instead of the Rstudio viewer with the windows command on Windows or with quartz (mac) or x11 (linux).

RHA
  • 3,677
  • 4
  • 25
  • 48
  • I want to open it in a extern browser and not in the plot window. – Alex Apr 27 '16 at 10:28
  • @Alex This opens a new window like in basic R, so it does work outside RStudio. It might not crash as often as RStudio. But the option from timelyportfolio works as well. – RHA Apr 27 '16 at 10:52