On Fri, Mar 9, 2012 at 2:41 AM, Rainer M Krug wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> On 08/03/12 21:52, John Hendy wrote:
>> Drat. I meant to add that when I run the code exactly as I have it from R
>> directly, it works. I
>> literally copy and paste my org-mode babel block
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 08/03/12 21:52, John Hendy wrote:
> Drat. I meant to add that when I run the code exactly as I have it from R
> directly, it works. I
> literally copy and paste my org-mode babel block code line by line into a
> terminal and obtain
> the proper ou
Drat. I meant to add that when I run the code exactly as I have it
from R directly, it works. I literally copy and paste my org-mode
babel block code line by line into a terminal and obtain the proper
output via tikz. *That's* the perplexing part. What would be working
directly from R and not from
I have an R block like so:
#+begin_src R
library(lattice)
library(tikzDevice)
=bunch of code=
barchart(side$name~side$x2,groups=side$type,horiz=T,
xlim=c(0,0.75),col=c("lightblue","yellow"),xlab="Product
Performance (2-box)")
dev.off()
tools::texi2dvi("bar-2b.tex",pdf=T)
#+end_src
T