savePipeline: Saves the 'AnalysisPipeline' or 'StreamingAnalysisPipeline'...

Description Usage Arguments Details Value See Also Examples

Description

Saves the AnalysisPipeline or StreamingAnalysisPipeline object to the file system without outputs

Usage

1
2
3
4
5
6
7
savePipeline(object, path)

## S4 method for signature 'BaseAnalysisPipeline'
savePipeline(object, path)

## S4 method for signature 'MetaAnalysisPipeline'
savePipeline(object, path)

Arguments

object

object that contains input, pipeline, registry and output

path

the path at which the .Rda file containing the pipeline should be stored, along with the name of the file including a .Rda extension

Details

The AnalysisPipeline or StreamingAnalysisPipeline object is saved to the file system in the paths specified

This method is implemented on the base class as it is a shared functionality types of Analysis Pipelines which extend this class

Value

Does not return a value

See Also

Other Package core functions: BaseAnalysisPipeline-class, MetaAnalysisPipeline-class, assessEngineSetUp, checkSchemaMatch, createPipelineInstance, exportAsMetaPipeline, generateOutput, genericPipelineException, getInput, getLoggerDetails, getOutputById, getPipelinePrototype, getPipeline, getRegistry, initDfBasedOnType, initialize,BaseAnalysisPipeline-method, loadMetaPipeline, loadPipeline, loadPredefinedFunctionRegistry, loadRegistry, prepExecution, registerFunction, saveRegistry, setInput, setLoggerDetails, updateObject, visualizePipeline

Examples

1
2
3
4
5
6
## Not run: 
  library(analysisPipelines)
  pipelineObj <- AnalysisPipeline(input = iris)
  pipelineObj %>>% savePipeline(path = "./test.RDS")

## End(Not run)

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