emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] plotting a transposed table


From: Thomas S. Dye
Subject: Re: [O] plotting a transposed table
Date: Tue, 18 Mar 2014 07:44:20 -1000

Aloha hubert,

Could you use the transpose function in the Library of Babel?

#+name: transpose-example
| 1 | 2 | 3 |
| 4 | 5 | 6 |

#+name: transpose
#+begin_src emacs-lisp :var table=transpose-example
  (apply #'mapcar* #'list table)
#+end_src

#+results: transpose
| 1 | 4 |
| 2 | 5 |
| 3 | 6 |

All the best,
Tom

hubert <address@hidden> writes:

> I have a table where the data runs left-to-right instead of
> top-to-bottom.  For example:
>
>   | year  | 2014 | 2015 | 2016 | 2017 | 2018 |
>   | value |    1 |    2 |    3 |    4 |    5 |
>
> Gnuplot expects the data to be top-to-bottom, but I want to keep the
> table in that format.  I know that I could write an external script
> create a transposed copy of the table, but I was wondering if there was
> an easier way to plot the data.

-- 
Thomas S. Dye
http://www.tsdye.com



reply via email to

[Prev in Thread] Current Thread [Next in Thread]