From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: table not returned Date: Wed, 28 Mar 2012 13:45:38 +0200 Message-ID: <87zkb1c5jx.fsf@med.uni-goettingen.de> References: <87ty19ak2b.fsf@med.uni-goettingen.de> <87pqbx4wn7.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:43364) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCrKg-0001CO-Oo for emacs-orgmode@gnu.org; Wed, 28 Mar 2012 07:46:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SCrKa-0005fU-9w for emacs-orgmode@gnu.org; Wed, 28 Mar 2012 07:46:30 -0400 Received: from plane.gmane.org ([80.91.229.3]:52984) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SCrKa-0005fQ-2X for emacs-orgmode@gnu.org; Wed, 28 Mar 2012 07:46:24 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SCrKW-00048l-1K for emacs-orgmode@gnu.org; Wed, 28 Mar 2012 13:46:20 +0200 Received: from genepi110.genepi.med.uni-goettingen.de ([134.76.140.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Mar 2012 13:46:19 +0200 Received: from andreas.leha by genepi110.genepi.med.uni-goettingen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Mar 2012 13:46:19 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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)")) >> #+end_src >> >> #+results: > > I can't test this because of the character. ^^^^^ This character got lost on the mailing list. I guess the offending character was the plus-minus character. This should be testable, I hope: ,---- | #+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: `---- Again, this works as expected, if "(minimum" is replaced by "minimum". Regards, Andreas