pipe_print {pipeflow} | R Documentation |
Print the pipeline as a table
Description
Print the pipeline as a table
Usage
pipe_print(pip, verbose = FALSE)
Arguments
pip |
|
verbose |
|
Value
the Pipeline
object invisibly
Examples
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)
[Package pipeflow version 0.2.2 Index]