PipelineDefinition-methods {pipeComp} | R Documentation |
PipelineDefinition
classMethods for PipelineDefinition
class
get names of PipelineDefinition steps
set names of PipelineDefinition steps
## S4 method for signature 'PipelineDefinition' show(object) ## S4 method for signature 'PipelineDefinition' names(x) ## S4 replacement method for signature 'PipelineDefinition' names(x) <- value ## S4 method for signature 'PipelineDefinition' x$name ## S4 method for signature 'PipelineDefinition' length(x) ## S4 method for signature 'PipelineDefinition,ANY,ANY,ANY' x[i] ## S4 method for signature 'PipelineDefinition' as.list(x) arguments(object) ## S4 method for signature 'PipelineDefinition' arguments(object) defaultArguments(object) defaultArguments(object) <- value ## S4 method for signature 'PipelineDefinition' defaultArguments(object) ## S4 replacement method for signature 'PipelineDefinition' defaultArguments(object) <- value stepFn(object, step = NULL, type) ## S4 method for signature 'PipelineDefinition' stepFn(object, step = NULL, type) stepFn(object, step, type) <- value ## S4 replacement method for signature 'PipelineDefinition' stepFn(object, step, type) <- value
object |
An object of class |
x |
An object of class |
value |
Replacement values |
name |
The step name |
i |
The index(es) of the steps |
step |
The name of the step for which to set or get the function |
type |
The type of function to set/get, either 'functions', 'evaluation', 'aggregation', 'descriptions', or 'initiation' (will parse partial matches) |
Depends on the method.
PipelineDefinition
, addPipelineStep
pd <- mockPipeline() length(pd) names(pd) pd$step1 pd[2:1]