Description Usage Arguments Details Value See Also Examples
Saves the AnalysisPipeline or StreamingAnalysisPipeline object to the file system without outputs
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)
|
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 |
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
Does not return a value
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
1 2 3 4 5 6 | ## Not run:
library(analysisPipelines)
pipelineObj <- AnalysisPipeline(input = iris)
pipelineObj %>>% savePipeline(path = "./test.RDS")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.