* Beginning R plot export
@ 2011-05-10 23:28 John Tait
2011-05-10 23:48 ` Nick Dokos
0 siblings, 1 reply; 3+ messages in thread
From: John Tait @ 2011-05-10 23:28 UTC (permalink / raw)
To: emacs-orgmode
Hi
Do I need to do extra configuration to get R plot output in LaTeX exports?
Using the simplest code block:
#+SRCNAME: graph
#+BEGIN_SRC R :exports both
x=c(1,2)
y=c(2,4)
plot(x,y)
x
#+END_SRC
The numbers "1 2" appear in the LaTeX output, indicating that R is
running. The plot doesn't appear though. What am I missing?
Thanks
John
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Beginning R plot export
2011-05-10 23:28 Beginning R plot export John Tait
@ 2011-05-10 23:48 ` Nick Dokos
2011-05-11 17:26 ` John Tait
0 siblings, 1 reply; 3+ messages in thread
From: Nick Dokos @ 2011-05-10 23:48 UTC (permalink / raw)
To: John Tait; +Cc: nicholas.dokos, emacs-orgmode
John Tait <johngtait@gmail.com> wrote:
> Hi
>
> Do I need to do extra configuration to get R plot output in LaTeX exports?
>
> Using the simplest code block:
>
> #+SRCNAME: graph
> #+BEGIN_SRC R :exports both
> x=c(1,2)
> y=c(2,4)
> plot(x,y)
> x
> #+END_SRC
>
> The numbers "1 2" appear in the LaTeX output, indicating that R is
> running. The plot doesn't appear though. What am I missing?
>
The following works for me:
--8<---------------cut here---------------start------------->8---
#+SRCNAME: graph
#+BEGIN_SRC R :exports both :results graphics :file foo.png
x=c(1,2)
y=c(2,4)
plot(x,y)
#+END_SRC
--8<---------------cut here---------------end--------------->8---
Nick
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Beginning R plot export
2011-05-10 23:48 ` Nick Dokos
@ 2011-05-11 17:26 ` John Tait
0 siblings, 0 replies; 3+ messages in thread
From: John Tait @ 2011-05-11 17:26 UTC (permalink / raw)
To: nicholas.dokos; +Cc: emacs-orgmode
Thank-you! I now have a little plot in my PDF!
John
On 5/11/11, Nick Dokos <nicholas.dokos@hp.com> wrote:
> John Tait <johngtait@gmail.com> wrote:
>
>> Hi
>>
>> Do I need to do extra configuration to get R plot output in LaTeX exports?
>>
>> Using the simplest code block:
>>
>> #+SRCNAME: graph
>> #+BEGIN_SRC R :exports both
>> x=c(1,2)
>> y=c(2,4)
>> plot(x,y)
>> x
>> #+END_SRC
>>
>> The numbers "1 2" appear in the LaTeX output, indicating that R is
>> running. The plot doesn't appear though. What am I missing?
>>
>
> The following works for me:
>
> --8<---------------cut here---------------start------------->8---
> #+SRCNAME: graph
> #+BEGIN_SRC R :exports both :results graphics :file foo.png
> x=c(1,2)
> y=c(2,4)
> plot(x,y)
> #+END_SRC
> --8<---------------cut here---------------end--------------->8---
>
> Nick
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-05-11 17:26 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-10 23:28 Beginning R plot export John Tait
2011-05-10 23:48 ` Nick Dokos
2011-05-11 17:26 ` John Tait
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.