Re: [O] R plots always exported to Rplots.pdf

2013-05-22 Thread Eric Schulte
Greg Slodkowicz writes: > Hi, > I'm trying to generate a report with R plots using org-mode but no matter > what header arguments are you the generated files are always called > Rplots.pdf > > This is what my code block looks like: > > #+NAME: pvals_waw > #+BEGIN_SRC R :file fig1.png :exports res

Re: [O] R plots always exported to Rplots.pdf

2013-05-22 Thread Greg Slodkowicz
That solves it, many thanks! - Greg On Wed, May 22, 2013 at 2:38 PM, Jay Kerns wrote: > Hi Greg, > > On Wed, May 22, 2013 at 8:23 AM, Greg Slodkowicz wrote: > > [snip] > > > This is what my code block looks like: > > > > #+NAME: pvals_waw > > #+BEGIN_SRC R :file fig1.png :exports results > >

Re: [O] R plots always exported to Rplots.pdf

2013-05-22 Thread Jay Kerns
Hi Greg, On Wed, May 22, 2013 at 8:23 AM, Greg Slodkowicz wrote: [snip] > This is what my code block looks like: > > #+NAME: pvals_waw > #+BEGIN_SRC R :file fig1.png :exports results > pvals = read.table("waw_data.txt", header=T) > plot(pvals$pvalue, pvals$length) > #+END_SRC > Have you tried

[O] R plots always exported to Rplots.pdf

2013-05-22 Thread Greg Slodkowicz
Hi, I'm trying to generate a report with R plots using org-mode but no matter what header arguments are you the generated files are always called Rplots.pdf This is what my code block looks like: #+NAME: pvals_waw #+BEGIN_SRC R :file fig1.png :exports results pvals = read.table("waw_data.txt", he