Learn R Programming

exreport (version 0.4.1)

exreportAdd: Add elements to an existing exreport document

Description

This function allows to add one or more reportable objects to an exisiting exreport document.

Usage

exreportAdd(rep, elem)

Arguments

rep
an exreport object in which the elem will be added
elem
a reportable object or a list of them

Value

an extended exreport document

Examples

Run this code
# Create an empty document:
report <- exreport("Test document")

# Create a reportable object (an experiment)
experiment <- expCreate(wekaExperiment, name="test-exp", parameter="fold")

# Add this object to the document
exreportAdd(report, experiment)

Run the code above in your browser using DataLab