Displaying 1 result from an estimated 1 matches for "r_nox".
Did you mean:
r_no
1998 Jan 15
1
a -nographics option to R
...tion as
.First <- function() {
if (interactive() && getenv("DISPLAY") != "") x11()
}
Is it reasonable to extend that a bit and use
.First <- function() {
if (interactive() && getenv("DISPLAY") != "" && ! (getenv("R_NOX") != "")) x11()
}
or something like that then put a -nographics flag into the R script
that would set R_NOX. I am encountering the same kind of difficulty
that Peter Dalgaard mentioned when working remotely over a slow
connection. I'm just checking that the compiled R works p...