From: Andreas Leha <andreas.leha@med.uni-goettingen.de>
To: emacs-orgmode@gnu.org
Subject: [babel] problem with colnames
Date: Tue, 08 May 2012 20:55:31 +0200 [thread overview]
Message-ID: <87r4uu33ks.fsf@med.uni-goettingen.de> (raw)
Hi all,
I have a question regarding colnames in babel source blocks.
Suppose, I have a source block (in R) that has as input a table and returns a
table. And I would like to have the resulting table with column
names, but the input table does not have column names.
How can I achieve this?
Here is an example:
The input table
#+name: intab
| bla |
| blu |
By default, the colnames are stripped off the result:
#+begin_src R :var intab=intab
colnames(intab) <- "rara"
intab
#+end_src
#+results:
| bla |
| blu |
The same happens when setting :colnames no
#+begin_src R :var intab=intab :colnames no
colnames(intab) <- "rara"
intab
#+end_src
#+results:
| bla |
| blu |
Setting :colnames yes strips the first row from the input:
#+begin_src R :var intab=intab :colnames yes
colnames(intab) <- "rara"
intab
#+end_src
#+results:
| rara |
|------|
| blu |
Finally, setting :colnames nil also strips the first row from the input:
#+begin_src R :var intab=intab :colnames nil
colnames(intab) <- "rara"
intab
#+end_src
#+results:
| rara |
|------|
| blu |
Regards,
Andreas
next reply other threads:[~2012-05-08 18:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-05-08 18:55 Andreas Leha [this message]
2012-05-08 17:57 ` [babel] problem with colnames Eric Schulte
2012-05-08 20:26 ` Andreas Leha
2012-05-08 19:16 ` Thomas S. Dye
2012-05-08 19:26 ` Andreas Leha
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87r4uu33ks.fsf@med.uni-goettingen.de \
--to=andreas.leha@med.uni-goettingen.de \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).