Re: [Rd] Background session with R

2017-07-11 Thread Norm Matloff
My Rdsm package will do what you want, https://cran.r-project.org/web/packages/Rdsm/index.html Norm Matloff > Message: 4 > Date: Mon, 10 Jul 2017 17:12:57 + > From: "Stravs, Michael" > To: "r-devel@r-project.org" > Cc: "shiny-disc...@googlegroups.

Re: [Rd] Background session with R

2017-07-10 Thread Gábor Csárdi
You might find the https://github.com/r-lib/processx package useful. Also, the dev version of https://github.com/r-lib/callr might be useful. (The CRAN version of callr does not support background processes.) Gabor On Mon, Jul 10, 2017 at 6:12 PM, Stravs, Michael wrote: > Hi, > > I am working o

[Rd] Background session with R

2017-07-10 Thread Stravs, Michael
Hi, I am working on some code to have a background R process running that I can submit data to, check computation progress, and retrieve results later. I am aware that "parallel" does a lot of that - however, "parallel" shuts down the nodes when I quit the master process. On the contrary, I wou