From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: statistics with R, convert the result into an org table Date: Wed, 11 Apr 2018 14:30:58 +0200 Message-ID: <87604xx6v1.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f6Eu5-0007tg-Jw for emacs-orgmode@gnu.org; Wed, 11 Apr 2018 08:31:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f6Eu2-0005pw-Gz for emacs-orgmode@gnu.org; Wed, 11 Apr 2018 08:31:09 -0400 Received: from [195.159.176.226] (port=59275 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1f6Eu2-0005oy-8M for emacs-orgmode@gnu.org; Wed, 11 Apr 2018 08:31:06 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1f6Ert-0001Wp-FR for emacs-orgmode@gnu.org; Wed, 11 Apr 2018 14:28:53 +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" To: emacs-orgmode@gnu.org 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. :2.000 Min. :1.3 : 1st Qu.:4.650 1st Qu.:1.4 : Median :5.700 Median :5.6 : Mean :5.643 Mean :4.7 : 3rd Qu.:7.100 3rd Qu.:5.9 : Max. :8.300 Max. :9.3 : NA's :2.0 Is there a way to have the result already translated into an org table resulting in | V1 | | | V2 | | | Min. | 2.000 | Min. | 1.3 | | | 1st Qu. | 4.650 | 1st Qu. | 1.4 | | | Median | 5.700 | Median | 5.6 | | | Mean | 5.643 | Mean | 4.7 | | | 3rd Qu. | 7.100 | 3rd Qu. | 5.9 | | | Max. | 8.300 | Max. | 9.3 | | Uwe Brauer