print.parade_flow.Rd
Print method for parade flows
# S3 method for class 'parade_flow' print(x, ...)
A parade_flow object
parade_flow
Additional arguments (ignored)
The input object (invisibly)
grid <- data.frame(x = 1:3) fl <- flow(grid) |> stage("sq", function(x) x^2, schema = returns(result = dbl())) print(fl) #> <parade_flow> #> Grid : 3 rows × 1 cols [x] #> Stages : 1 [sq] #> sq : fn() #> returns: result #> Error : propagate