Re: Seeing all the steps when I run an R code block

2024-04-10 Thread Ihor Radchenko
William Denton writes: >> Do you still see it on your side? > > Thanks for following up. No, I don't see it any more ... an ESS upgrade or > something fixed the problem. Thanks for checking! Canceled. -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at

Re: Seeing all the steps when I run an R code block

2024-04-09 Thread William Denton
On Tuesday, April 9th, 2024 at 09:03, Ihor Radchenko wrote: > > Here's one big problem. I have a file, /home/wtd/books/reading/test-r.org, > > and > > in it is this R block: > > > > # - > > > > #+begin_src R :session R:testing :results value > > 1 > > #+end_src > > > > # - > > > >

Re: Seeing all the steps when I run an R code block

2024-04-09 Thread Ihor Radchenko
William Denton writes: > Here's one big problem. I have a file, /home/wtd/books/reading/test-r.org, > and > in it is this R block: > > # - > > #+begin_src R :session R:testing :results value > 1 > #+end_src > > # - > > If I execute that with C-c C-c, the R session buffer starts, but

Re: Seeing all the steps when I run an R code block

2022-11-27 Thread Jeremie Juste
Hello Ihor, On Sunday, 27 Nov 2022 at 11:52, Ihor Radchenko wrote:> > So, if R has some way to override the working directory, we should > enforce what we promise in the above section of our manual anyway. > > Otherwise, the will lose on Org document reproducibility. This is a fair point, many

Re: Seeing all the steps when I run an R code block

2022-11-27 Thread Ihor Radchenko
Jeremie Juste writes: > Note also that you can force the R process to start in a particular > directory with the dir parameter. > > #+begin_src R :dir ~/ > getwd() > #+end_src > > #+RESULTS: > : /home/djj > > > Now on the org-mode side. This is becomes tricky because I don't know > what users

Re: Seeing all the steps when I run an R code block

2022-11-27 Thread Jeremie Juste
Hello William, Many thanks for reporting. > > I think this specific issue might be solved on Org side. > We can let-bind `ess-startup-directory' to 'default-directory while > running R source blocks. > > CCing the maintainer. Ihor, many thanks for the suggestion. However I'm not sure it will

Re: Seeing all the steps when I run an R code block

2022-11-23 Thread Ihor Radchenko
William Denton writes: >> You might have set some customization that overrides `default-directory' >> setting in ESS. > > You were quite right---thanks for checking. Recently ESS changed > ess-startup-directory and now it's aware of projects. I'd recently put some > files under Git, which

Re: Seeing all the steps when I run an R code block

2022-11-22 Thread William Denton
On 15 November 2022, Ihor Radchenko wrote: I tried to test with a clean config and bare ESS installation will raise the following query: R:2 starting project directory? /tmp/ Note the default value /tmp which is `default-directory' containing test Org file in my testing. You might have set

Re: Seeing all the steps when I run an R code block

2022-11-14 Thread Ihor Radchenko
William Denton writes: > I've got a few problems with R source blocks that I can't figure out. They > started late last month, I think. I'm running Emacs and Org from the > development trees, refreshing and recompiling regularly. ESS (the package > for > working with R) is up to date too.

Seeing all the steps when I run an R code block

2022-11-14 Thread William Denton
I've got a few problems with R source blocks that I can't figure out. They started late last month, I think. I'm running Emacs and Org from the development trees, refreshing and recompiling regularly. ESS (the package for working with R) is up to date too. Here's one big problem. I have a