Description Usage Arguments Details Value See Also Examples
Obtain the prototype of the functions in the pipeline
1 2 3 4 | getPipelinePrototype(metaPipelineObj)
## S4 method for signature 'MetaAnalysisPipeline'
getPipelinePrototype(metaPipelineObj)
|
metaPipelineObj |
A |
This method returns the prototype of functions in the pipeline and their respective arguments as proto
object.
Functions in the pipeline can be accessed easily by using the '$' operator, and within the functions the arguments can
be accessed the same way. These can be accessed and set to new values. This pipeline prototype can then be passed to the
createPipelineInstance
method which will instantiate an executable pipeline with the inputs set in the prototype
An object og class proto
from the 'proto' package
Other Package core functions: BaseAnalysisPipeline-class
,
MetaAnalysisPipeline-class
,
assessEngineSetUp
,
checkSchemaMatch
,
createPipelineInstance
,
exportAsMetaPipeline
,
generateOutput
,
genericPipelineException
,
getInput
, getLoggerDetails
,
getOutputById
, getPipeline
,
getRegistry
,
initDfBasedOnType
,
initialize,BaseAnalysisPipeline-method
,
loadMetaPipeline
,
loadPipeline
,
loadPredefinedFunctionRegistry
,
loadRegistry
, prepExecution
,
registerFunction
,
savePipeline
, saveRegistry
,
setInput
, setLoggerDetails
,
updateObject
,
visualizePipeline
1 2 3 4 5 6 | ## Not run:
pipelineObj <- AnalysisPipeline(input = iris)
pipelineObj %>>% univarCatDistPlots(uniCol = "Species") %>>%
exportAsMetaPipeline %>>% getPipelinePrototype
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.