ReporteRs
is an R package for creating Microsoft Word and Powerpoint documents. It does not require any Microsoft component to be used. It runs on Windows, Linux, Unix and Mac OS systems. It is designed to automate reporting generation from R.
ReporteRs will be maintained but will not evolve anymore. It has been rewritten with no java dependency:
You can use the package as a tool for fast reporting and as a tool for reporting automation.
There are several features to let you format and present R outputs, for example:
FlexTable
objects let you format any complex table.There are default templates and default values, it enables easy generation of R outputs in few lines of codes.
Below a short R script:
require( ggplot2 )
filename <- tempfile(fileext = ".docx") # the document to produce
writeDoc( doc, filename )
It lets you also create corporate documents, creation of complex tables, pretty graphical rendering with a set of R functions.
To automate document generation only R code is necessary.
With Word and PowerPoint document, you can add contents from R but also replace contents. By default, content is added at the end of the specified template document. When generating Word document, bookmarks can be used to define locations of replacements in the document. When generating PowerPoint document, slide indexes can be used to define locations of slides to replace in the presentation.
ReporteRs needs rJava
with a java version >= 1.6 ; make sure you have an installed JRE.
system("java -version")
should return java version ‘1.6.0’ or greater.
Test your rJava
installation with the following code, you should get your java version in a string:
require(rJava)
.jinit()
#> [1] 0
#> [1] "1.8.0_31"
The help pages are located at https://davidgohel.github.io/ReporteRs/.
This project is developped and maintained on my own time. In order to help me to maintain the package, do not send me private emails if you only have questions about how to use the package. Instead, visit Stackoverflow, ReporteRs
has its own tag Stackoverflow link! I usually read them and answer when possible.
When you file a bug report, please spend some time making it easy for me to follow and reproduce. The more time you spend on making the bug report coherent, the more time I can dedicate to investigate the bug as opposed to the bug report.