powered by
Get output of given step
pipe_get_out(pip, step)
the output at the given step.
Pipeline object
Pipeline
string name of step
string
pipe_collect_out() to collect output of multiple steps.
pipe_collect_out()
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")
Run the code above in your browser using DataLab