ReporteRs-package
ReporteRs: a package to create document from R
ReporteRs lets you create Microsoft Word, Microsoft PowerPoint and html documents.
Details
To get an r document object:
The following functions can be used whatever the output format is (docx, pptx).
addTitle
Add a titleaddFlexTable
Add a table (new)addPlot
Add plotsaddImage
Add external imagesaddParagraph
Add paragraphs of textaddRScript
Add an r scriptwriteDoc
Write the document into a file or a directory
ReporteRs
comes with an object of class pot
to let you
handle text output and format. You can associate a text with formats (font
size, font color, etc.), with an hyperlink or with a Footnote
as a reference note.
ReporteRs
comes also with an object of class FlexTable
that let you design and format tabular outputs.
Default values:
With ReporteRs, some options can be used to reduce usage of some parameters:
"ReporteRs-default-font"
Default font family to use (default to "Helvetica"). This will be used as default values for argumentfontname
ofaddPlot
and argumentfont.family
ofpot
."ReporteRs-fontsize"
Default font size to use (default to 11). This will be used as default values for argumentpointsize
ofaddPlot
and argumentfont.size
ofpot
."ReporteRs-list-definition"
seelist.settings
."ReporteRs-locale.language"
language encoding (for html objects). Default to "en"."ReporteRs-locale.region"
region encoding (for html objects). Default to "US".
Note
Examples are in a donttest
section as they are using font that may be not
available on the host machine. Default font is Helvetica, it can be modified
with option ReporteRs-default-font
. To run an example with 'Arial'
default font, run first
options("ReporteRs-default-font" = "Arial")
Examples
# NOT RUN {
options("ReporteRs-fontsize"=10, "ReporteRs-default-font"="Helvetica")
# }