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

Releases: davidgohel/ReporteRs

Version 0.5.4

25 May 16:25
Compare
Choose a tag to compare
Version 0.5.4 Pre-release
Pre-release

News

  • addRScript implemented for docx, html and pptx
  • addParagraph.pptx, addPlot.pptx, addFlexTable.pptx, addImage.pptx
    gain arguments offx, offy, width and height (default missing)
    to allow positioning shapes freely on a slide (independently of
    what is defined in the slide layouts). It comes also now with a parProperties argument.
  • HTML code is available for FlexTable and plots.
    See as.html.FlexTable and raphael.html.

Installation

Dependencies

Java >= 1.6

ReporteRs needs 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")

From sources

if( !require( devtools ) ) install.packages("devtools")
devtools::install_github('ReporteRsjars', 'davidgohel')
devtools::install_github('ReporteRs', 'davidgohel')

Binary package

Download first the ReporteRsjars binary package: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.1
Then ReporteRs binary package (click on the green button below)

Version 0.5.3

11 May 14:57
Compare
Choose a tag to compare
Version 0.5.3 Pre-release
Pre-release

News

  • FlexTable API is now much more easier to use. Lot of new functions have been added. see

    ?FlexTable
    
  • add function setFlexTableWidths to set columns widths in FlexTable:

    MyFTable = setFlexTableWidths( MyFTable, widths = c(1,1,1,1,3))
    
  • add methods chprop to modify property objects:

    textProp = textProperties()
    textProp01 = chprop( textProp, color = "red" )
    
  • add names to stylenames returned by styles.docx:

    > styles( doc )
                       Normal                 heading 1                 heading 2 
                     "Normal"                  "Titre1"                  "Titre2" 
                    heading 3                 heading 4                 heading 5 
                     "Titre3"                  "Titre4"                  "Titre5" 
                    heading 6                 heading 7                 heading 8 
                     "Titre6"                  "Titre7"                  "Titre8" 
    

Installation

Dependencies

Java >= 1.6

ReporteRs needs 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")

From sources

if( !require( devtools ) ) install.packages("devtools")
devtools::install_github('ReporteRsjars', 'davidgohel')
devtools::install_github('ReporteRs', 'davidgohel')

Binary package

Download first the ReporteRsjars binary package: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.1
Then ReporteRs binary package (click on the green button below)

Version 0.5.2

21 Apr 13:46
Compare
Choose a tag to compare
Version 0.5.2 Pre-release
Pre-release

News

A new function is available add.plot.interactivity. It lets you add interactivity on the plots. Run the following code to see popup, click or double click events examples:

example(add.plot.interactivity)

The function can not be used with ggplot2 objects.

This release contains also an important debug in the docx graphical device and a code modification to be compatible with Ubuntu default compiler options.

In a next releases the graphics devices will handle clipping of text; there is no clipping actually so the engine clip very crudely (by omitting any text that does not appear to be wholly inside the clipping region). A known side effect is lattice strip names that can be omitted. See:
http://cran.r-project.org/doc/manuals/R-ints.html#Handling-text

Installation

Dependencies

Java >= 1.6

ReporteRs needs 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")

From sources

if( !require( devtools ) ) install.packages("devtools")
devtools::install_github('ReporteRsjars', 'davidgohel')
devtools::install_github('ReporteRs', 'davidgohel')

Binary package

Download first the ReporteRsjars binary package: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.1
Then ReporteRs binary package (click on the green button below)

Version 0.5.1

17 Apr 17:09
Compare
Choose a tag to compare
Version 0.5.1 Pre-release
Pre-release

Installation

Dependencies

Java >= 1.6

ReporteRs needs 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")

From sources

if( !require( devtools ) ) install.packages("devtools")
devtools::install_github('ReporteRsjars', 'davidgohel')
devtools::install_github('ReporteRs', 'davidgohel')

Binary package

Download first the ReporteRsjars binary package: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.1
Then ReporteRs binary package (click on the green button below)

Version 0.5

11 Apr 10:05
Compare
Choose a tag to compare
Version 0.5 Pre-release
Pre-release

Installation

Dependencies

Java >= 1.6

ReporteRs needs 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")

From sources

if( !require( devtools ) ) install.packages("devtools")
devtools::install_github('ReporteRsjars', 'davidgohel')
devtools::install_github('ReporteRs', 'davidgohel')

Binary package

Download first the ReporteRsjars binary package: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.1
Then ReporteRs binary package (click on the green button below)

Version 0.4

17 Mar 23:22
Compare
Choose a tag to compare
Version 0.4 Pre-release
Pre-release

Installation

Dependencies

Java >= 1.6

ReporteRs needs 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")

From sources

if( !require( devtools ) ) install.packages("devtools")
devtools::install_github('ReporteRsjars', 'davidgohel')
devtools::install_github('ReporteRs', 'davidgohel')

Binary package

Download first the ReporteRsjars binary package: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.1
Then ReporteRs binary package (click on the green button below)

Version 0.3

03 Mar 00:59
Compare
Choose a tag to compare
Version 0.3 Pre-release
Pre-release

Installation

Dependencies

Java >= 1.6

ReporteRs needs 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")

From sources

if( !require( devtools ) ) install.packages("devtools")
devtools::install_github('ReporteRsjars', 'davidgohel')
devtools::install_github('ReporteRs', 'davidgohel')

Binary package

Download first the ReporteRsjars binary package: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.1
Then ReporteRs binary package (click on the green button below)

Version 0.2

13 Feb 01:14
Compare
Choose a tag to compare
Version 0.2 Pre-release
Pre-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.

News

FlexTable objects are available.
FlexTable can be manipulated so that almost any formating can be specified.
It allows to insert headers and footers rows (with merged cells).
Formating can be done on cells, paragraphs and texts (borders, colors, fonts, etc.)

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')

Version 0.1

27 Jan 12:40
Compare
Choose a tag to compare
Version 0.1 Pre-release
Pre-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')