pipe_expr {teal.modules.clinical}R Documentation

Expressions as a Pipeline

Description

Concatenate expressions in a single pipeline-flavor expression.

Usage

pipe_expr(exprs, pipe_str = "%>%")

Arguments

exprs

(list of call)
expressions to concatenate in a pipeline (⁠%>%⁠).

pipe_str

(character)
the character which separates the expressions.

Value

a call

Examples

pipe_expr(
  list(
    expr1 = substitute(df),
    expr2 = substitute(head)
  )
)


[Package teal.modules.clinical version 0.9.1 Index]