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

Releases: davidgohel/ReporteRs

Version 0.6.8

06 Nov 18:09
Compare
Choose a tag to compare
Version 0.6.8 Pre-release
Pre-release

News

  • add markdown processing via function addMarkdown.

Installation

Make sure you have a valid java run time on your system. It should be at least Java >= 1.6.

ReporteRs needs rJava package ; run the following script to install it if needed.

if( !require( rJava ) ) install.packages("rJava")

From sources

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

Binary package

ReporteRsjars v0.0.2 is needed first. You can download the binary package here: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.2

ReporteRs v0.6.8
Download then ReporteRs binary package (click on the green button below).

Version 0.6.6

26 Oct 15:06
Compare
Choose a tag to compare
Version 0.6.6 Pre-release
Pre-release

News

  • add shading color for textProperties and parProperties

  • add hyperlink option to pot objects

  • add footnote option to pot objects (for docx and html objects)

  • ordered and unordered list item. See:

    ?parProperties
    ?list.settings.

  • addParagraph.pptx has a new argument append to append text in an
    existing shape

Installation

Make sure you have a valid java run time on your system. It should be at least Java >= 1.6.

ReporteRs needs rJava package ; run the following script to install it if needed.

if( !require( rJava ) ) install.packages("rJava")

From sources

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

Binary package

ReporteRsjars v0.0.2 is needed first. You can download the binary package here: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.2

ReporteRs v0.6.6
Download then ReporteRs binary package (click on the green button below).

Version 0.6.3

22 Sep 18:29
Compare
Choose a tag to compare
Version 0.6.3 Pre-release
Pre-release

News

  • Fix for addImage.pptx and addRScript.pptx
  • pptx template - fix a bug affecting some templates where dimensions values were missing.

Installation

Make sure you have a valid java run time on your system. It should be at least Java >= 1.6.

ReporteRs needs rJava package ; run the following script to install it if needed.

if( !require( rJava ) ) install.packages("rJava")

From sources

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

Binary package

ReporteRsjars v0.0.2 is needed first. You can download the binary package here: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.2

ReporteRs v0.6.3
Download then ReporteRs binary package (click on the green button below).

Version 0.6.1

12 Sep 16:55
Compare
Choose a tag to compare
Version 0.6.1 Pre-release
Pre-release

News

  • new function setFlexTableBackgroundColors enable coloring of
    cell background of a FlexTable.
  • let addParagraph.docx have no stylename argument when bookmark
    argument is used.
  • solved a bug in setFlexTableBorders

Installation

Make sure you have a valid java run time on your system. It should be at least Java >= 1.6.

ReporteRs needs rJava package ; run the following script to install it if needed.

if( !require( rJava ) ) install.packages("rJava")

From sources

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

Binary package

ReporteRsjars v0.0.2 is needed first. You can download the binary package here: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.2

ReporteRs v0.6.1
Download then ReporteRs binary package (click on the green button below).

Version 0.6.0

11 Aug 07:06
Compare
Choose a tag to compare
Version 0.6.0 Pre-release
Pre-release

News

  • You can now add Section in Word documents with function addSection. Options are page layout (lanscape or portrait) and number of columns in the section to create.
  • FlexTable API is now complete. Headers, body and footers formats can all be change. Also any text content can be added in headers, body and footers. See ?alterFlexTable

Installation

Make sure you have a valid java run time on your system. It should be at least Java >= 1.6.

ReporteRs needs rJava package ; run the following script to install it if needed.

if( !require( rJava ) ) install.packages("rJava")

From sources

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

Binary package

ReporteRsjars v0.0.2 is needed first. You can download the binary package here: https://github.com/davidgohel/ReporteRsjars/releases/tag/v0.2

ReporteRs v0.6.0
Download then ReporteRs binary package (click on the green button below).

Version 0.5.9

24 Jul 17:39
Compare
Choose a tag to compare
Version 0.5.9 Pre-release
Pre-release

News

  • borderProperties can now be used to format FlexTable

    MyFTable[ 2:5,1, side = "bottom"] = borderProperties( style = "dashed" )
    MyFTable[,1, to = "header", side = "bottom"] = borderProperties( width=3, style = "dashed" )

See here: http://davidgohel.github.io/ReporteRs/FlexTable.html#UIDBOc6H3RFe1

Version 0.5.8

24 Jul 12:10
Compare
Choose a tag to compare
Version 0.5.8 Pre-release
Pre-release

News

  • implementation of [ operator for FlexTable headers and footers
    modifications (add and format content)

  • add function toc.options for docx object. When list separator
    used when building the TOC is different from the list separator
    in your computer's regional settings, the doc cannot be built.
    toc.options let force the separator (read from the template
    document used to initialize the docx object).

    ?toc.options.docx
    

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.7

27 Jun 15:43
Compare
Choose a tag to compare
Version 0.5.7 Pre-release
Pre-release

News

  • add doc entry "bookmark"

    ?bookmark
    
  • enhanced tootltips

  • in Rmd/example.Rmd, you will find an example of using ReporteRs with knitr.

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.6

20 Jun 08:54
Compare
Choose a tag to compare
Version 0.5.6 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")

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.5

06 Jun 08:27
Compare
Choose a tag to compare
Version 0.5.5 Pre-release
Pre-release

News

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)