Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make Sweave + RweaveHTML put all graphics in a specified folder

Tags:

r

sweave

As a refinement of this question, does anyone know how to tell Sweave (or better the driver) to put all the graphics in a specific directory when using the RweaveHTML driver from the R2HTML package? I can't find any option for that :(

like image 329
Dr G Avatar asked Jan 13 '11 10:01

Dr G


1 Answers

Sweave responds to the prefix.string option for figures. E.g. in one recent document I use

\SweaveOpts{engine=R,eps=FALSE,echo=TRUE,prefix.string=figures/chart}

which leads to files figures/chart-chunkname.pdf where I use chunkname as the identifier in the Sweave code snippet. I suspect the same may help for R2HTML but I have not tried that driver.

like image 118
Dirk Eddelbuettel Avatar answered Sep 21 '22 03:09

Dirk Eddelbuettel