search for: gui_path

Displaying 1 result from an estimated 1 matches for "gui_path".

Did you mean: gdi_path
2009 Jul 27
0
Open/Close Console
Dear list, one of my procedures is highly memory intensive (time-dependent spatially distributed data). Unfortunately, I could only tackle this problem with the dull idea of opening a new console window, running the procedure, and closing the new window. #previous procedure #open new console     gui_path <- "C:/Programs/R/R-2.9.0/bin/Rgui.exe"     shell.exec(gui_path)     memory.limit(size = 4000)       #run the memory intensive procedure     quit(save = "no") #subsequent procedure It works, when I send my code line-by-line from TINN-R to R. But it fails (=executes the code...