Question

I have been using Cairo when I generate plots in R, but I always use CairoWin() before each plot. Is there a way I can tell R to use Cairo for the whole session as soon as I start working?

Was it helpful?

Solution

Haven't tested, but probably as easy as:

options(device="CairoWin")

And if you put that in your .Rprofile, it will be the default in all your R sessions.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top