nest_expr {table.express} | R Documentation |
Nest expressions as a functional chain
Description
Nest expressions as a functional chain
Usage
nest_expr(
...,
.start = TRUE,
.end = .start,
.parse = getOption("table.express.parse", FALSE)
)
Arguments
... |
Expressions that will be part of the functional chain. |
.start |
Whether to add a |
.end |
Whether to add an |
.parse |
Logical. Whether to apply |
Details
All expressions in ...
are "collapsed" with %>%
, passing the
ExprBuilder's captured data.table
as the initial parameter. Names are silently dropped.
The chain is evaluated eagerly and saved in the ExprBuilder
instance to be used during final
expression evaluation.
To see more examples, check the vignette, or the table.express-package entry.
[Package table.express version 0.4.2 Index]