I often run long R scripts when I start my R environment. I would like to be able to load / run the R script in Emacs / ESS and continue other work in another buffer.

When I press C-g or C-c C-c the process is interrupted, and I must restart the script.

What is the best way to background the R process in ESS / Emacs?

EDIT: Thank you for your answers and comments, but none of them address the fact that Emacs freezes when you load / run a large script and you can't change buffer.

I suppose my question is a little more general - can Emacs background a process to let you keep working?

link|improve this question

use C-c C-l to execute the script. – Eduardo Leoni May 6 '10 at 3:59
feedback

3 Answers

up vote 5 down vote accepted

ESS runs R as asyncornuous process. You don't need to background anything. You can run your code for hours and still work in ess uninterrupted.

You problem seems to be something else. When you execute your script you do it "visibly", i.e. your executed code is printed to terminal, the emacs indeed freezes and can be very slow.

Set ess-eval-visibly-p to nil and huge chunks of code will be sent to R in a glimpse:

(setq ess-eval-visibly-p nil)

Cheers.

link|improve this answer
If you end up in a different ess environment where you can't/don't want to evaluate and emacs lisp, you can achieve the same result by making sure that your function is assigning its result to a variable. Instead of long.running() do res <- long.running(). – Wilduck Jan 12 at 14:59
feedback

M-x R will start an R session (the default buffer name is *R*). If your press M-x R again, a second R session will be started (with buffer name *R:2*).

Each session has its own R process, so you can run a long R script in one and still use the other independently.

Pressing C-x C-b brings up the buffer list, which would allow you to switch between R sessions.

Or, if you put

(global-set-key "\C-cr" 'ess-request-a-process)

in your .emacs initialization file, then every time you press C-c r you will be prompted for which R session (buffer) you wish to switch to. If you only have one session, it will switch there automatically.

link|improve this answer
There's already a binding for ess-request-a-process C-c C-k, but for some peculiar and completely unknown reason it defaults to "S", even if you set "R" as default. – aL3xa Dec 8 '10 at 3:54
feedback

In my personal experience, ESS isn't very good at handling very large scripts, in that at times the rest of Emacs becomes unusable. Perhaps you are better off doing development in ESS, then running the full script in BATCH mode.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.