emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-babel strange html print in R
@ 2020-02-06 18:23 Jeremie Juste
  2020-02-07 12:53 ` Dominique Dumont
  2020-02-11  5:16 ` stardiviner
  0 siblings, 2 replies; 13+ messages in thread
From: Jeremie Juste @ 2020-02-06 18:23 UTC (permalink / raw)
  To: emacs-orgmode


Hello,

I've found that some strange results when outputing html from R.
Do you have some insights on a potential solution?

Best regards,
Jeremie

Org mode version 9.3.4 (9.3.4-elpa @ /home/djj/.emacs.d/elpa/org-20200206/)

#+PROPERTY: header-args:R  :eval yes  :exports results :colnames yes :results output :output-dir images/    :cache yes  :session *R* 

#+begin_src R :results output html
library(xtable)
x <- rnorm(100)
y <- x + rnorm(100)
print(xtable(summary(lm(y ~ x))),type="html")
#+end_src


#+RESULTS:
#+begin_export html

<!-- html table generated in R 3.6.1 by xtable 1.8-4 package -->
<!-- Thu Feb  6 19:13:34 2020 -->
<table border=1>
<
<
 </
<
Estimate </
<
Std. Error </
<
t value </
<
Pr(&gt;|t|) </
 </tr>
  <
<td align="right"
(Intercept) </
<td align="right"
-0.0130 </
<td align="right"
0.1023 </
<td align="right"
-0.13 </
<td align="right"
0.8991 </
</tr>
  <
<td align="right"
x </
<td align="right"
1.0011 </
<td align="right"
0.0987 </
<td align="right"
10.14 </
<td align="right"
0.0000 </
</tr>
   </table>
#+end_export


** Expected results
#+begin_export html
<table border=1>
<tr> <th>  </th> <th> Estimate </th> <th> Std. Error </th> <th> t value </th> <th> Pr(&gt;|t|) </th>  </tr>
  <tr> <td align="right"> (Intercept) </td> <td align="right"> -0.0130 </td> <td align="right"> 0.1023 </td> <td align="right"> -0.13 </td> <td align="right"> 0.8991 </td> </tr>
  <tr> <td align="right"> x </td> <td align="right"> 1.0011 </td> <td align="right"> 0.0987 </td> <td align="right"> 10.14 </td> <td align="right"> 0.0000 </td> </tr>
   </table>
#+end_export

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-06 18:23 org-babel strange html print in R Jeremie Juste
@ 2020-02-07 12:53 ` Dominique Dumont
  2020-02-07 13:38   ` Bastien
  2020-02-07 14:51   ` Jack Kamm
  2020-02-11  5:16 ` stardiviner
  1 sibling, 2 replies; 13+ messages in thread
From: Dominique Dumont @ 2020-02-07 12:53 UTC (permalink / raw)
  To: emacs-orgmode

On Thursday, 6 February 2020 19:23:36 CET Jeremie Juste wrote:
> I've found that some strange results when outputing html from R.
> Do you have some insights on a potential solution?

On my system, org-mode 3.6.1 provides the expected table. 

All the best

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-07 12:53 ` Dominique Dumont
@ 2020-02-07 13:38   ` Bastien
  2020-02-07 15:23     ` Dominique Dumont
  2020-02-07 14:51   ` Jack Kamm
  1 sibling, 1 reply; 13+ messages in thread
From: Bastien @ 2020-02-07 13:38 UTC (permalink / raw)
  To: Dominique Dumont; +Cc: emacs-orgmode

Hi Dominique,

Dominique Dumont <domi.dumont@free.fr> writes:

> On Thursday, 6 February 2020 19:23:36 CET Jeremie Juste wrote:
>> I've found that some strange results when outputing html from R.
>> Do you have some insights on a potential solution?
>
> On my system, org-mode 3.6.1

This seems to be a *very* version of org-mode ;)

-- 
 Bastien

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-07 12:53 ` Dominique Dumont
  2020-02-07 13:38   ` Bastien
@ 2020-02-07 14:51   ` Jack Kamm
  2020-02-07 23:54     ` Jeremie Juste
  1 sibling, 1 reply; 13+ messages in thread
From: Jack Kamm @ 2020-02-07 14:51 UTC (permalink / raw)
  To: Dominique Dumont, emacs-orgmode

Dominique Dumont <domi.dumont@free.fr> writes:

> On my system, org-mode 3.6.1 provides the expected table. 

My system produces the expected table as well (org 9.3.2, R 3.6.2).

--Jack

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-07 13:38   ` Bastien
@ 2020-02-07 15:23     ` Dominique Dumont
  0 siblings, 0 replies; 13+ messages in thread
From: Dominique Dumont @ 2020-02-07 15:23 UTC (permalink / raw)
  To: emacs-orgmode

On Friday, 7 February 2020 14:38:53 CET Bastien wrote:
> This seems to be a *very* version of org-mode ;)

Bummer... I remember that I've used org-version to get the version number. I 
guess I have cut'n'pasted an unrelated number :-/

For the record, I've tested R and html output on Org mode version 9.3.1

Sorry for the confusion.

All the best

Dod 

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-07 14:51   ` Jack Kamm
@ 2020-02-07 23:54     ` Jeremie Juste
  2020-02-08  1:30       ` Jack Kamm
  0 siblings, 1 reply; 13+ messages in thread
From: Jeremie Juste @ 2020-02-07 23:54 UTC (permalink / raw)
  To: Jack Kamm; +Cc: emacs-orgmode

Hello,


Jack Kamm <jackkamm@gmail.com> writes:

> Dominique Dumont <domi.dumont@free.fr> writes:
>
>> On my system, org-mode 3.6.1 provides the expected table. 
>
> My system produces the expected table as well (org 9.3.2, R 3.6.2).
>
> --Jack
Thanks for the info. 
Unfortunately I couldn't identify the issue
I updated R and org (org 9.3.2, R 3.6.2).


launched
> emacs -Q

- executed the following commands

(add-to-list 'load-path  "/home/djj/.emacs.d/elpa/ess-20200115.225")
(add-to-list 'load-path  "/home/djj/.emacs.d/elpa/julia-mode-20180816.2117")
(require 'ess-site)
 (org-babel-do-load-languages
   'org-babel-load-languages
   '( (R . t)
     ))

but I'm still getting 

#+begin_src R :results output  :cache no :session "R2"
  library(xtable)
  x <- rnorm(100)
  y <- x + rnorm(100)
  a <- summary(lm(y ~ x))
  print(xtable(a),type="html")
#+end_src

#+RESULTS:
#+begin_example

<!-- html table generated in R 3.6.2 by xtable 1.8-4 package -->
<!-- Sat Feb  8 00:49:03 2020 -->
<table border=1>
<
<
 </
<
Estimate </
<
Std. Error </
<
t value </
<
Pr(&gt;|t|) </
 </tr>
  <
<td align="right"
(Intercept) </
<td align="right"
0.0353 </
<td align="right"
0.1019 </
<td align="right"
0.35 </
<td align="right"
0.7294 </
</tr>
  <
<td align="right"
x </
<td align="right"
0.9426 </
<td align="right"
0.0882 </
<td align="right"
10.68 </
<td align="right"
0.0000 </
</tr>
   </table>
#+end_example

Best regards,

Jeremie

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-07 23:54     ` Jeremie Juste
@ 2020-02-08  1:30       ` Jack Kamm
  2020-02-08  8:42         ` Jeremie Juste
  0 siblings, 1 reply; 13+ messages in thread
From: Jack Kamm @ 2020-02-08  1:30 UTC (permalink / raw)
  To: Jeremie Juste; +Cc: emacs-orgmode

Hi Jeremie,

> Thanks for the info. 
> Unfortunately I couldn't identify the issue
> I updated R and org (org 9.3.2, R 3.6.2).
> but I'm still getting [the error]

Sorry, I missed the initial property line where you set the ":session"
header argument.

When I set the ":session" header argument, I get the original buggy
behavior that you report.

It looks like the reason for this, is that the substrings like "tr>"
match `comint-prompt-regexp', and so get stripped out by
`org-babel-comint-with-output'.

I think a more reliable implementation would be to avoid
`org-babel-comint-with-output', and take the approach used in the
":results value" case, which reads the output from a temp file instead
of directly from the shell.

Actually, that's the approach I use in my ob-session-async package [0],
which re-implements ob-R sessions to allow async evaluation. It doesn't
suffer from the bug you are reporting. I'll plan to extract that
implementation and submit it as a patch here.

Long term, I am intending to contribute the full functionality in
ob-session-async here, but that's still a ways off.

[0] https://github.com/jackkamm/ob-session-async

Jack

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-08  1:30       ` Jack Kamm
@ 2020-02-08  8:42         ` Jeremie Juste
  0 siblings, 0 replies; 13+ messages in thread
From: Jeremie Juste @ 2020-02-08  8:42 UTC (permalink / raw)
  To: Jack Kamm; +Cc: emacs-orgmode

Hello Jack,

Thanks for taking the time to reply.

> I think a more reliable implementation would be to avoid
> `org-babel-comint-with-output', and take the approach used in the
> ":results value" case, which reads the output from a temp file instead
> of directly from the shell.
I understand better now. Thanks
>
> Actually, that's the approach I use in my ob-session-async package [0],
> which re-implements ob-R sessions to allow async evaluation. It doesn't
> suffer from the bug you are reporting. I'll plan to extract that
> implementation and submit it as a patch here.

Your solution works just fine. I came across ob-session-async a recently
and find it very interesting thanks again.

#+begin_src R :results output html :cache no :async session
  library(xtable)
  x <- rnorm(100)
  y <- x + rnorm(100)
  a <- summary(lm(y ~ x))
  print(xtable(a),type="html",comment=FALSE)
#+end_src

#+RESULTS:
#+begin_export html
<table border=1>
<tr> <th>  </th> <th> Estimate </th> <th> Std. Error </th> <th> t value </th> <th> Pr(&gt;|t|) </th>  </tr>
  <tr> <td align="right"> (Intercept) </td> <td align="right"> 0.1249 </td> <td align="right"> 0.0961 </td> <td align="right"> 1.30 </td> <td align="right"> 0.1969 </td> </tr>
  <tr> <td align="right"> x </td> <td align="right"> 0.9263 </td> <td align="right"> 0.0879 </td> <td align="right"> 10.53 </td> <td align="right"> 0.0000 </td> </tr>
   </table>
#+end_export

Best regards,
Jeremie

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-06 18:23 org-babel strange html print in R Jeremie Juste
  2020-02-07 12:53 ` Dominique Dumont
@ 2020-02-11  5:16 ` stardiviner
  2020-02-11 15:40   ` Jack Kamm
  1 sibling, 1 reply; 13+ messages in thread
From: stardiviner @ 2020-02-11  5:16 UTC (permalink / raw)
  To: Jeremie Juste; +Cc: emacs-orgmode


You should try ~:results value html~. Here is what I got correctly:

#+begin_src R :results value html
library(xtable)
x <- rnorm(100)
y <- x + rnorm(100)
print(xtable(summary(lm(y ~ x))),type="html")
#+end_src

#+RESULTS[<2020-02-11 13:14:59> 91ff0df2529284897e3585e3ec2e640290ee8308]:
#+begin_export html
<!-- html table generated in R 3.6.2 by xtable 1.8-3 package -->
<!-- Tue Feb 11 13:14:58 2020 -->
<table border=1>
<tr> <th>  </th> <th> Estimate </th> <th> Std. Error </th> <th> t value </th> <th> Pr(&gt;|t|) </th>  </tr>
  <tr> <td align="right"> (Intercept) </td> <td align="right"> -0.0064 </td> <td align="right"> 0.1069 </td> <td align="right"> -0.06 </td> <td align="right"> 0.9520 </td> </tr>
  <tr> <td align="right"> x </td> <td align="right"> 1.1066 </td> <td align="right"> 0.1022 </td> <td align="right"> 10.83 </td> <td align="right"> 0.0000 </td> </tr>
   </table>
#+end_export

Jeremie Juste <jeremiejuste@gmail.com> writes:

> Hello,
>
> I've found that some strange results when outputing html from R.
> Do you have some insights on a potential solution?
>
> Best regards,
> Jeremie
>
> Org mode version 9.3.4 (9.3.4-elpa @ /home/djj/.emacs.d/elpa/org-20200206/)
>
> #+PROPERTY: header-args:R  :eval yes  :exports results :colnames yes :results output :output-dir images/    :cache yes  :session *R* 
>
> #+begin_src R :results output html
> library(xtable)
> x <- rnorm(100)
> y <- x + rnorm(100)
> print(xtable(summary(lm(y ~ x))),type="html")
> #+end_src
>
>
> #+RESULTS:
> #+begin_export html
>
> <!-- html table generated in R 3.6.1 by xtable 1.8-4 package -->
> <!-- Thu Feb  6 19:13:34 2020 -->
> <table border=1>
> <
> <
>  </
> <
> Estimate </
> <
> Std. Error </
> <
> t value </
> <
> Pr(&gt;|t|) </
>  </tr>
>   <
> <td align="right"
> (Intercept) </
> <td align="right"
> -0.0130 </
> <td align="right"
> 0.1023 </
> <td align="right"
> -0.13 </
> <td align="right"
> 0.8991 </
> </tr>
>   <
> <td align="right"
> x </
> <td align="right"
> 1.0011 </
> <td align="right"
> 0.0987 </
> <td align="right"
> 10.14 </
> <td align="right"
> 0.0000 </
> </tr>
>    </table>
> #+end_export
>
>
> ** Expected results
> #+begin_export html
> <table border=1>
> <tr> <th>  </th> <th> Estimate </th> <th> Std. Error </th> <th> t value </th> <th> Pr(&gt;|t|) </th>  </tr>
>   <tr> <td align="right"> (Intercept) </td> <td align="right"> -0.0130 </td> <td align="right"> 0.1023 </td> <td align="right"> -0.13 </td> <td align="right"> 0.8991 </td> </tr>
>   <tr> <td align="right"> x </td> <td align="right"> 1.0011 </td> <td align="right"> 0.0987 </td> <td align="right"> 10.14 </td> <td align="right"> 0.0000 </td> </tr>
>    </table>
> #+end_export


-- 
[ stardiviner ]
       I try to make every word tell the meaning what I want to express.

       Blog: https://stardiviner.github.io/
       IRC(freenode): stardiviner, Matrix: stardiviner
       GPG: F09F650D7D674819892591401B5DF1C95AE89AC3
      

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-11  5:16 ` stardiviner
@ 2020-02-11 15:40   ` Jack Kamm
  2020-02-11 17:30     ` Jeremie Juste
  0 siblings, 1 reply; 13+ messages in thread
From: Jack Kamm @ 2020-02-11 15:40 UTC (permalink / raw)
  To: numbchild, Jeremie Juste; +Cc: emacs-orgmode

Hi,

stardiviner <numbchild@gmail.com> writes:

> You should try ~:results value html~. Here is what I got correctly:

Yes, this seems like the best solution for this case.

On the other hand, it would be desirable if ":results output" didn't
mangle the output, due to trying to clean up prompts. There is probably
some corner case out there where this is a more serious issue -- but for
this case, it seems best to just use ":results value html".

I was planning to submit my implementation of ":session :results output"
that avoids the prompt mangling [0], but now I'm leaning towards putting
this off, until a more compelling case arises to justify it.

[0] https://github.com/jackkamm/ob-session-async/blob/master/lisp/ob-session-async-R.el

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-11 15:40   ` Jack Kamm
@ 2020-02-11 17:30     ` Jeremie Juste
  2020-02-11 23:25       ` Jack Kamm
  2020-02-12  7:05       ` stardiviner
  0 siblings, 2 replies; 13+ messages in thread
From: Jeremie Juste @ 2020-02-11 17:30 UTC (permalink / raw)
  To: Jack Kamm; +Cc: emacs-orgmode

Hello,

Thanks for the input.
I didn't see the full mail of stardiviner for some reason.

:results value html  in the following code generates an error for me.
(Org mode version 9.2.3,R version 3.6.2).
but :results value output the "html" in an org-table format

#+begin_src R :results value html
library(xtable)
x <- rnorm(100)
y <- x + rnorm(100)
print(xtable(summary(lm(y ~ x))),type="html")
#+end_src

Best regards,
Jeremie

Jack Kamm <jackkamm@gmail.com> writes:

> Hi,
>
> stardiviner <numbchild@gmail.com> writes:
>
>> You should try ~:results value html~. Here is what I got correctly:
>
> Yes, this seems like the best solution for this case.
>
> On the other hand, it would be desirable if ":results output" didn't
> mangle the output, due to trying to clean up prompts. There is probably
> some corner case out there where this is a more serious issue -- but for
> this case, it seems best to just use ":results value html".
>
> I was planning to submit my implementation of ":session :results output"
> that avoids the prompt mangling [0], but now I'm leaning towards putting
> this off, until a more compelling case arises to justify it.
>
> [0] https://github.com/jackkamm/ob-session-async/blob/master/lisp/ob-session-async-R.el

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-11 17:30     ` Jeremie Juste
@ 2020-02-11 23:25       ` Jack Kamm
  2020-02-12  7:05       ` stardiviner
  1 sibling, 0 replies; 13+ messages in thread
From: Jack Kamm @ 2020-02-11 23:25 UTC (permalink / raw)
  To: Jeremie Juste; +Cc: emacs-orgmode

Hi,

Jeremie Juste <jeremiejuste@gmail.com> writes:

> :results value html  in the following code generates an error for me.
> (Org mode version 9.2.3,R version 3.6.2).
> but :results value output the "html" in an org-table format

Hmm, I can confirm that ":session :results value html" is working for
me, same as for stardiviner. Could you give more info about the error
you're seeing?

I'm using R 3.6.2 and Org 9.4. But I'd be surprised if it doesn't work
for Org 9.2 -- git blame suggests that html output has been supported in
ob-R since at least 2015. But it wouldn't hurt to upgrade to the latest
released version of Org (9.3).

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: org-babel strange html print in R
  2020-02-11 17:30     ` Jeremie Juste
  2020-02-11 23:25       ` Jack Kamm
@ 2020-02-12  7:05       ` stardiviner
  1 sibling, 0 replies; 13+ messages in thread
From: stardiviner @ 2020-02-12  7:05 UTC (permalink / raw)
  To: Jeremie Juste; +Cc: Jack Kamm, emacs-orgmode

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256


Jeremie Juste <jeremiejuste@gmail.com> writes:

> Hello,
>
> Thanks for the input.
> I didn't see the full mail of stardiviner for some reason.

About this, I found Gmail put my emails into Spams folder. I can't figure out
what reasons. I also found similar situations in some people in Emacs-help guys.
Anyway, If you can, please report my emails "Not Spam". Thanks :)

>
> :results value html  in the following code generates an error for me.
> (Org mode version 9.2.3,R version 3.6.2).
> but :results value output the "html" in an org-table format
>
> #+begin_src R :results value html
> library(xtable)
> x <- rnorm(100)
> y <- x + rnorm(100)
> print(xtable(summary(lm(y ~ x))),type="html")
> #+end_src
>
> Best regards,
> Jeremie
>
> Jack Kamm <jackkamm@gmail.com> writes:
>
>> Hi,
>>
>> stardiviner <numbchild@gmail.com> writes:
>>
>>> You should try ~:results value html~. Here is what I got correctly:
>>
>> Yes, this seems like the best solution for this case.
>>
>> On the other hand, it would be desirable if ":results output" didn't
>> mangle the output, due to trying to clean up prompts. There is probably
>> some corner case out there where this is a more serious issue -- but for
>> this case, it seems best to just use ":results value html".
>>
>> I was planning to submit my implementation of ":session :results output"
>> that avoids the prompt mangling [0], but now I'm leaning towards putting
>> this off, until a more compelling case arises to justify it.
>>
>> [0] https://github.com/jackkamm/ob-session-async/blob/master/lisp/ob-session-async-R.el


- -- 
[ stardiviner ]
       I try to make every word tell the meaning what I want to express.

       Blog: https://stardiviner.github.io/
       IRC(freenode): stardiviner, Matrix: stardiviner
       GPG: F09F650D7D674819892591401B5DF1C95AE89AC3
      
-----BEGIN PGP SIGNATURE-----

iQFIBAEBCAAyFiEE8J9lDX1nSBmJJZFAG13xyVromsMFAl5Do/gUHG51bWJjaGls
ZEBnbWFpbC5jb20ACgkQG13xyVromsN8ewf/YkjUlLOAAAtpBRgOdIZg2N0JKxVt
vwXxH5G+5VOJNgH0avDRrGnI+2r5Kooqs0lpfIjoy5yi9tkG9Z4GShKa2iYP2wLA
hbsN0OJxZ3ChdCjbyW2ABNdzCVL6T3oremxy8DzdZGrM2sSmFFSKK+N8s/PI7IJP
2wE7jjUCoNFcB6XGodcZiRXE+Ms/k1gPfzyJxvbeOdX1GQriQE8ecofEpomkz3F0
VQZ/sgec9mAsKZMC9054H0br5DT1c3Wo/DnaKnVpw24wrwWyMJSj02XSau+GIFLq
3hAx01mrP4ud7aUs/TnwCfaVrvH0i/4iO+KhJr6KyZB2gPMTXTs4nuf5Zw==
=dAR8
-----END PGP SIGNATURE-----

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-02-12  7:06 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-06 18:23 org-babel strange html print in R Jeremie Juste
2020-02-07 12:53 ` Dominique Dumont
2020-02-07 13:38   ` Bastien
2020-02-07 15:23     ` Dominique Dumont
2020-02-07 14:51   ` Jack Kamm
2020-02-07 23:54     ` Jeremie Juste
2020-02-08  1:30       ` Jack Kamm
2020-02-08  8:42         ` Jeremie Juste
2020-02-11  5:16 ` stardiviner
2020-02-11 15:40   ` Jack Kamm
2020-02-11 17:30     ` Jeremie Juste
2020-02-11 23:25       ` Jack Kamm
2020-02-12  7:05       ` stardiviner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).