pipe_clone | R Documentation |
Creates a copy of a pipeline object.
pipe_clone(pip, deep = FALSE)
pip |
|
deep |
|
returns the copied Pipeline
object
p1 <- pipe_new("pipe")
pipe_add(p1, "step1", \(x = 1) x)
p2 <- pipe_clone(p1)
pipe_add(p2, "step2", \(y = 1) y)
p1
p2
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.