Description Usage Arguments Details Value See Also Examples
Obtain the pipeline
1 2 3 4 | getPipeline(object)
## S4 method for signature 'BaseAnalysisPipeline'
getPipeline(object)
|
object |
The |
Obtains the pipeline from the AnalysisPipeline or StreamingAnalysisPipeline object as a tibble
This method is implemented on the base class as it is a shared functionality types of Analysis Pipelines which extend this class
Tibble describing the pipeline
Other Package core functions: BaseAnalysisPipeline-class,
MetaAnalysisPipeline-class,
assessEngineSetUp,
checkSchemaMatch,
createPipelineInstance,
exportAsMetaPipeline,
generateOutput,
genericPipelineException,
getInput, getLoggerDetails,
getOutputById,
getPipelinePrototype,
getRegistry,
initDfBasedOnType,
initialize,BaseAnalysisPipeline-method,
loadMetaPipeline,
loadPipeline,
loadPredefinedFunctionRegistry,
loadRegistry, prepExecution,
registerFunction,
savePipeline, saveRegistry,
setInput, setLoggerDetails,
updateObject,
visualizePipeline
1 2 3 4 5 6 7 8 9 10 | ## Not run:
library(analysisPipelines)
pipelineObj <- AnalysisPipeline(input = iris)
getNumRows <- function(dataset){
return(nrow(dataset))
}
registerFunction("getNumRows")
pipelineObj %>>% getNumRows %>>% getPipeline
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.