Skip to content
This repository was archived by the owner on Mar 23, 2020. It is now read-only.

Version 0.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@davidgohel davidgohel released this 27 Jan 12:40
· 783 commits to master since this release

Features

  • Create docx and pptx files with only a few lines of R code.
  • Add tables, plots, text or tables of contents into Word PowerPoint and html documents.
  • Customize formatting of R output.
  • Take advantage of the benefits of reproducible research.

Installation

Dependencies

ReporteRs needs java (>= 1.6) ; make sure you have an installed JRE

system("java -version")
# should return "java version '1.6.0'" or greater.

ReporteRs needs also some R packages ; run the following script to install them if needed.

if( !require( rJava ) ) install.packages("rJava")
if( !require( ggplot2 ) ) install.packages("ggplot2")
if( !require( base64 ) ) install.packages("base64")
if( !require( highlight ) ) install.packages("highlight")

Install ReporteRs
From binary: download the file (click on the green button below) and from R "install from local zip file" (or with install.packages)

From sources: run the following command (requires package devtools)

devtools::install_github('ReporteRs', 'davidgohel')