I did a fresh install of ARCH linux and so of R version 2.15.1. But after plotting anything with the plot command, the plot window is always empty (nothing shown). Could there be an issue with drivers or something else. I have tried graphics.off() function but to no avail.
Question edited:
The plot however is visible after resizing the plot window.
x<-c(1, 2, 3, 4, 5)
y<-c(0.1, 0.3, 0.7, 1.11, 1.3)
plot(x, y)
> sessionInfo()
R version 2.15.1 (2012-06-22)
Platform: x86_64-unknown-linux-gnu (64-bit)
locale:
[1] C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
Question edited:
Setting X11.options(type="nbcairo") works fine.