pipe_print | R Documentation |
Print the pipeline as a table
pipe_print(pip, verbose = FALSE)
pip |
|
verbose |
|
the Pipeline
object invisibly
p <- pipe_new("pipe", data = 1:2)
p$add("f1", \(x = 1) x)
p$add("f2", \(y = 1) y)
pipe_print(p)
pipe_print(p, verbose = TRUE)
# Also works with standard print function
print(p)
print(p, verbose = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.