generateReport: Generate a HTML report from an 'AnalysisPipeline' object

Description Usage Arguments Details Value See Also Examples

Description

Generate a HTML report from an AnalysisPipeline object

Usage

1
2
3
4
generateReport(object, path)

## S4 method for signature 'AnalysisPipeline,character'
generateReport(object, path = ".")

Arguments

object

object that contains input, pipeline, registry and output

path

path on the file system, where the generated html report should be stored

Details

The sequence of operations stored in the AnalysisPipeline object are run, outputs generated, and a HTML report is generated with outputs in the same sequence as the pipeline created by the user

Value

Updated AnalysisPipeline object

See Also

Other Package core functions for batch/one-time analyses: AnalysisPipeline-class, checkSchema, initialize,BaseAnalysisPipeline-method

Examples

1
2
3
4
5
6
## Not run: 
pipelineObj <- AnalysisPipeline(input = iris)
pipelineObj %>>% univarCatDistPlots(uniCol = "Species", storeOutput = T) -> pipelineObj
pipelineObj %>>% generateReport(path = ".")

## End(Not run)

analysisPipelines documentation built on July 1, 2020, 7:09 p.m.