>>> "William" == William Denton writes:
> I don't think it is possible without a step in the middle, because
> "Min. :2." is all one string (in a cell in a matrix).
Correct is leaves the :
But I can live with that.
> 2018-04-11T14:30:58+0200 Uwe Brauer wrote:
> Remove ":results output"
Thanks! That works nicely.
I don't think it is possible without a step in the middle, because
"Min. :2." is all one string (in a cell in a matrix).
#+begin_src R :results output :var qual=qual :colnames yes
s <- summary(qual)
s[1]
#+end_src
#+RESULTS:
: [1] "Min. :2.000 "
You would have to split each cell into t
2018-04-11T14:30:58+0200 Uwe Brauer wrote:
> #+tblname: qual
> | 8.3 | 1.4 |
>
> | 7.3 | 5.6 |
> | 2 | 1.3 |
> | 5.7 | 9.3 |
> | 5.3 | 5.9 |
> | 4 | |
> | 6.9 | |
>
> #+begin_src R :results output :var qual=qual
> summary(qual)
> #+end_src
Remove ":results output"
--
- Formas de cont
Hi
I use structure like this
Statistics with R
#+tblname: qual
| 8.3 | 1.4 |
| 7.3 | 5.6 |
| 2 | 1.3 |
| 5.7 | 9.3 |
| 5.3 | 5.9 |
| 4 | |
| 6.9 | |
#+begin_src R :results output :var qual=qual
summary(qual)
#+end_src
And obtain
#+RESULTS:
:V1 V2
: Min.