Calling remote code-blocks in org-mode
Posted February 09, 2016 at 08:40 PM | categories: orgmode, plotting, interactive | tags:
Table of Contents
We often write code in supporting information files that generates figures or tables in a scientific manuscript. Today, we explore how to call those code blocks remotely but get the output in the file we call it from. We will write code in si.org that generates an interactive figure that is presented in this file. We will use data published in hallenbeck-2015-compar-co2. You can find the data we used in the SI for that paper, or more conveniently here .
So, we make a named code block in the si.org file called "figure-1". Then we call it like this:
#+call: si.org:figure-1() :wrap html
That executes the code block in the other file, and wraps the output in an HTML block in this file! I do not like my code blocks to execute when I export because they are usually expensive calculations, so I have to manually run the line with C-c C-c, but you can override that behavior with a local setting of org-export-babel-evaluate. So, without further delay, here is the result. Now we have a nice, neat blog post file, with code in an si.org file!
1 References
Bibliography
- [hallenbeck-2015-compar-co2] "Alexander Hallenbeck, Adefemi Egbebi, Kevin Resnik, , David Hopkinson, Shelley Anna & John Kitchin", Comparative Microfluidic Screening of Amino Acid Salt Solutions for Post-Combustion \ceCO2 Capture, "International Journal of Greenhouse Gas Control ", 43, 189 - 197 (2015). link. doi.
Copyright (C) 2016 by John Kitchin. See the License for information about copying.
Org-mode version = 8.2.10