Description Usage Arguments Details Value See Also Examples
Assesses engine (R, Spark, Python, Spark Structured Streaming) set up
1 2 3 4 | assessEngineSetUp(object)
## S4 method for signature 'BaseAnalysisPipeline'
assessEngineSetUp(object)
|
object |
A Pipeline object |
Assesses whether engines required for executing functions in an AnalysisPipeline or StreamingAnalysisPipeline
object have been set up
This method is implemented on the base class as it is a shared functionality across Pipeline objects
Tibble containing the details of available engines, whether they are required for a pipeline, a logical value reporting whether the engine has been set up, and comments.
Other Package core functions: BaseAnalysisPipeline-class,
MetaAnalysisPipeline-class,
checkSchemaMatch,
createPipelineInstance,
exportAsMetaPipeline,
generateOutput,
genericPipelineException,
getInput, getLoggerDetails,
getOutputById,
getPipelinePrototype,
getPipeline, getRegistry,
initDfBasedOnType,
initialize,BaseAnalysisPipeline-method,
loadMetaPipeline,
loadPipeline,
loadPredefinedFunctionRegistry,
loadRegistry, prepExecution,
registerFunction,
savePipeline, saveRegistry,
setInput, setLoggerDetails,
updateObject,
visualizePipeline
1 2 3 4 5 6 7 | ## Not run:
library(analysisPipelines)
pipelineObj <- AnalysisPipeline(input = iris)
pipelineObj %>>% univarCatDistPlots(uniCol = "Species", priColor = "blue",
optionalPlots = 0) %>>% assessEngineSetUp
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.