pipe_run_step | R Documentation |
Run given pipeline step possibly together with upstream and/or downstream dependencies.
pipe_run_step(
pip,
step,
upstream = TRUE,
downstream = FALSE,
cleanUnkept = FALSE
)
pip |
|
step |
|
upstream |
|
downstream |
|
cleanUnkept |
|
returns the Pipeline
object invisibly
p <- pipe_new("pipe", data = 1)
pipe_add(p, "add1", \(x = ~data, y = 1) x + y)
pipe_add(p, "add2", \(x = ~add1, z = 2) x + z)
pipe_add(p, "mult", \(x = ~add1, y = ~add2) x * y)
pipe_run_step(p, "add2")
pipe_run_step(p, "add2", downstream = TRUE)
pipe_run_step(p, "mult", upstream = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.