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 in the old window) when I send the entire code at once. I 
am grateful for any hints!

Regards,
Haeru


      
        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to