Skip to content

How to generate a report with graphics and tables?

2 messages · Liaw, Andy, Peter Wolf

#
If you don't mind pdf report generated from LaTeX, Sweave would probably
work nicely for you.  See the two articles on it in R News, which you can
find on the R web site.

One other possibility is to use the R2HTML package (and maybe the xtable
package, too) to write the `report' in HTML.

HTH,
Andy
------------------------------------------------------------------------------
Notice:  This e-mail message, together with any attachments,...{{dropped}}
#
Liaw, Andy wrote:

            
A third way is to use the R function ff:

Step 1: define a raw latex-report with R expressions (e.g. report.tex)
Step 2: modify some expressions in the raw report according the local 
situation (data sets, etc.)
Step 3: start R and evaluate ff("report.tex")
Step 4: latex report
Step 5: repeat 2-4 for the different data sets

Here is the link to the rd file:

See: 
http://www.wiwi.uni-bielefeld.de/~wolf/software/R-wtools/formfill/ff.html
or http://www.wiwi.uni-bielefeld.de/~wolf/software/R-wtools/formfill/ff.rd

Peter Wolf