Hi Nick,
Nick Dokos writes:
> BTW, two possible workarounds which "work" with org-babel-string-read:
>
> (org-babel-string-read "[foo]") --> [foo]
>
> (org-babel-string-read "'(bar)") --> (bar)
>
> do *not* work in the original context, so the org-babel-string-read
> problem is probably only par
Andreas Leha wrote:
> thanks for that analysis! I had tried replacing "(" with "[" without
> success. Now I "know" why:
>
> (org-babel-string-read "[foo)") --> Error
>
> ,
> | Debugger entered--Lisp error: (invalid-read-syntax ") or . in a vector")
> | read("[foo)")
> | org-babel-rea
Nick Dokos writes:
> Andreas Leha wrote:
>
>>
>> Hi Bastien,
>>
>> thanks for looking into this!
>>
>>
>> Bastien writes:
>>
>> > Andreas Leha writes:
>> >
>> >> #+begin_src R :results table
>> >> data.frame(parameter=c("parameter", "", "param1"),
>> >> mean=c("mean sd", "
Andreas Leha wrote:
>
> Hi Bastien,
>
> thanks for looking into this!
>
>
> Bastien writes:
>
> > Andreas Leha writes:
> >
> >> #+begin_src R :results table
> >> data.frame(parameter=c("parameter", "", "param1"),
> >> mean=c("mean sd", "", "1.1 0.1"),
> >> med
Hi Bastien,
thanks for looking into this!
Bastien writes:
> Andreas Leha writes:
>
>> #+begin_src R :results table
>> data.frame(parameter=c("parameter", "", "param1"),
>> mean=c("mean sd", "", "1.1 0.1"),
>> median=c("median", "(minimum;maximum)", "1 (1;2)"))
>
Andreas Leha writes:
> #+begin_src R :results table
> data.frame(parameter=c("parameter", "", "param1"),
> mean=c("mean sd", "", "1.1 0.1"),
> median=c("median", "(minimum;maximum)", "1 (1;2)"))
> #+end_src
>
> #+results:
I can't test this because of the character.
Hi all,
I have problems with the following table to be inserted into the org
mode buffer:
#+begin_src R :results table
data.frame(parameter=c("parameter", "", "param1"),
mean=c("mean ± sd", "", "1.1 ± 0.1"),
median=c("median", "(minimum;maximum)", "1 (1;2)"))
#+end_src