chain {table.express}R Documentation

Chain

Description

Build a chain of similar objects/operations.

Usage

chain(.data, ...)

## S3 method for class 'ExprBuilder'
chain(.data, ..., .parent_env = rlang::caller_env())

Arguments

.data

Object to be chained.

...

Arguments for the specific methods.

.parent_env

See end_expr().

Details

The chaining for ExprBuilder is equivalent to calling end_expr() followed by start_expr(). The ellipsis (...) is passed to both functions.

To see more examples, check the vignette, or the table.express-package entry.


[Package table.express version 0.4.2 Index]