From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ken Mankoff Subject: Programatic Org Table Groups Date: Wed, 04 Mar 2015 16:13:38 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60521) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YTGbz-0005Zo-IF for emacs-orgmode@gnu.org; Wed, 04 Mar 2015 16:13:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YTGbt-0002FH-FU for emacs-orgmode@gnu.org; Wed, 04 Mar 2015 16:13:47 -0500 Received: from mail-qg0-x233.google.com ([2607:f8b0:400d:c04::233]:39606) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YTGbt-0002Es-8N for emacs-orgmode@gnu.org; Wed, 04 Mar 2015 16:13:41 -0500 Received: by qgdq107 with SMTP id q107so1975697qgd.6 for ; Wed, 04 Mar 2015 13:13:40 -0800 (PST) Received: from gorgonzola ([71.58.77.153]) by mx.google.com with ESMTPSA id 64sm2824351qhw.37.2015.03.04.13.13.39 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 04 Mar 2015 13:13:39 -0800 (PST) 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 I'm generating Org tables via code and the =:results table= option. By the way the "tabulate" python package works great to convert Pandas DataFrames to Org Tables. I can generate tables this way, but if I try to add groups, I cannot. The first column with the special "/" character seems to be stripped. Below I can print two "//", but if I try to print one, the row is removed. Is this a bug? Does anyone have a workaround for this? Thanks, -k. #+BEGIN_SRC python :results table import numpy as np val = np.arange(9) tab = np.append(np.array(['//','<','>']), val) return tab.reshape(4,3) #+END_SRC #+RESULTS: | // | < | > | | 0 | 1 | 2 | | 3 | 4 | 5 | | 6 | 7 | 8 |