pipe_get_out | R Documentation |
Get output of given step
pipe_get_out(pip, step)
pip |
|
step |
|
the output at the given step.
pipe_collect_out()
to collect output of multiple steps.
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.