Concatenate expressions in a single pipeline-flavor expression.
Arguments
- exprs
(
list
ofcall
)
expressions to concatenate in a pipeline (%>%
).- pipe_str
(
character
)
the character which separates the expressions.
Examples
result <- teal.modules.clinical:::pipe_expr(
list(
expr1 = substitute(df),
expr2 = substitute(head)
)
)
result
#> df %>% head