pipe_append_to_step_names | R Documentation |
Appends string to all step names and takes care of updating step dependencies accordingly.
pipe_append_to_step_names(pip, postfix, sep = ".")
pip |
|
postfix |
|
sep |
|
returns the Pipeline
object invisibly
p <- pipe_new("pipe")
pipe_add(p, "step1", \(x = 1) x)
pipe_add(p, "step2", \(y = 1) y)
pipe_append_to_step_names(p, "new")
p
pipe_append_to_step_names(p, "foo", sep = "__")
p
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.