pipe_get_out {pipeflow} | R Documentation |
Get output of given step
Description
Get output of given step
Usage
pipe_get_out(pip, step)
Arguments
pip |
|
step |
|
Value
the output at the given step.
See Also
pipe_collect_out()
to collect output of multiple steps.
Examples
p <- pipe_new("pipe", data = 1:2)
pipe_add(p, "add1", \(x = ~data) x + 1)
pipe_add(p, "add2", \(x = ~data, y = ~add1) x + y)
pipe_run(p)
pipe_get_out(p, "add1")
pipe_get_out(p, "add2")
[Package pipeflow version 0.2.2 Index]