ReporteRs (version 0.8.1)

addRScript.bsdoc: Add R script into a bsdoc object

Description

Add R script into a bsdoc object.

Usage

# S3 method for bsdoc
addRScript(doc, rscript, file, text, ...)

Arguments

doc

bsdoc object where expressions have to be added

rscript

an object of class RScript. Not used if file or text is provided.

file

R script file. Not used if text or rscript is provided.

text

character vector. The text to parse. Not used if file or rscript is provided.

...

further arguments, not used.

Value

an object of class bsdoc.

Details

You have to one of the following argument: file or text or rscript.

See Also

bsdoc, addRScript

Examples

Run this code
# NOT RUN {
#START_TAG_TEST
doc.filename = "addRScript_bsdoc/example.html"

# set default font size to 11
options( "ReporteRs-fontsize" = 11 )

doc = bsdoc( )
doc = addRScript(doc, text = "x = rnorm(100)
plot(density( x ) )" )

# Write the object
writeDoc( doc, file = doc.filename )
#STOP_TAG_TEST
# }

Run the code above in your browser using DataCamp Workspace